Procházet zdrojové kódy

Time to refresh cache from settings file.

Mihawk před 12 roky
rodič
revize
643c1894d4
1 změnil soubory, kde provedl 4 přidání a 2 odebrání
  1. 4 2
      App.cpp

+ 4 - 2
App.cpp

@@ -521,12 +521,14 @@ void App::timerEvent(QTimerEvent *e)
 
     // HostNames scheduled daily refresh
     int currentHour = QTime::currentTime().hour();
-    if(currentHour == 21 && !myHostNamesRequested)
+    int refreshHour = Settings::globalInstance()->refreshHostNamesHour();
+    if(currentHour == refreshHour && !myHostNamesRequested)
     {
+      print("Refreshing hostname cache...\n");
       requestCachedHostNames();
       myHostNamesRequested = true;
     }
-    else if(currentHour != 21 && myHostNamesRequested)
+    else if(currentHour != refreshHour && myHostNamesRequested)
     {
       myHostNamesRequested = false;
     }