From 07780b48c54ddb7a6e7a6a3b39b815177a90d3ae Mon Sep 17 00:00:00 2001 From: Chocobo1 Date: Thu, 13 Jul 2017 00:41:30 +0800 Subject: [PATCH] Load the domain list at least once on startup. Fixup of 0532d546d7f3f971cbe9b7f6cf5202995e18d0d6 --- src/webui/abstractwebapplication.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/webui/abstractwebapplication.cpp b/src/webui/abstractwebapplication.cpp index ec2d32edb..92df37082 100644 --- a/src/webui/abstractwebapplication.cpp +++ b/src/webui/abstractwebapplication.cpp @@ -94,6 +94,7 @@ AbstractWebApplication::AbstractWebApplication(QObject *parent) connect(timer, &QTimer::timeout, this, &AbstractWebApplication::removeInactiveSessions); timer->start(60 * 1000); // 1 min. + reloadDomainList(); connect(Preferences::instance(), &Preferences::changed, this, &AbstractWebApplication::reloadDomainList); }