From 7e9ece2701f3a8ed11fee575780bd152f550398a 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 638ef9d78..d8b2fbc9f 100644 --- a/src/webui/abstractwebapplication.cpp +++ b/src/webui/abstractwebapplication.cpp @@ -94,6 +94,7 @@ AbstractWebApplication::AbstractWebApplication(QObject *parent) connect(timer, SIGNAL(timeout()), SLOT(removeInactiveSessions())); timer->start(60 * 1000); // 1 min. + reloadDomainList(); connect(Preferences::instance(), SIGNAL(changed()), this, SLOT(reloadDomainList())); }