From f422be917af56f757b3f6df138ab08eecf103bc5 Mon Sep 17 00:00:00 2001 From: Terrtia Date: Tue, 4 Feb 2020 09:29:53 +0100 Subject: [PATCH] fix: [domain explorer web] fix pagination by daterange --- var/www/blueprints/crawler_splash.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/var/www/blueprints/crawler_splash.py b/var/www/blueprints/crawler_splash.py index ee2e68ba..696b2d6e 100644 --- a/var/www/blueprints/crawler_splash.py +++ b/var/www/blueprints/crawler_splash.py @@ -154,5 +154,5 @@ def domains_explorer_web(): except: page = 1 - dict_data = Domain.domains_up_by_page('regular', page=page) + dict_data = Domain.domains_up_by_page('regular', page=page, date_from=date_from, date_to=date_to) return render_template("domain_explorer.html", dict_data=dict_data, bootstrap_label=bootstrap_label, domain_type='regular')