Quick and dirty patch for discussion - Last dev build broke Homepage API calls ? only 1 widget still working #3322

This commit is contained in:
Nicolas Hennion 2025-10-20 13:21:18 +00:00
parent 2b1d6f4309
commit 729532713f
1 changed files with 1 additions and 1 deletions

View File

@ -186,7 +186,7 @@ class GlancesRestfulApi:
def __update_stats(self, plugins_list_to_update=None):
# Never update more than 1 time per cached_time
if self.timer.finished():
if self.timer.finished() or plugins_list_to_update:
self.stats.update(plugins_list_to_update=plugins_list_to_update)
self.timer = Timer(self.args.cached_time)