From 64179e7dc16a9c44bafce95fa19f501d10add4ca Mon Sep 17 00:00:00 2001 From: shortcutme Date: Tue, 4 Oct 2016 16:24:33 +0200 Subject: [PATCH] Rev1536, Start download optional files on help check --- plugins/Sidebar/SidebarPlugin.py | 2 +- src/Config.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/Sidebar/SidebarPlugin.py b/plugins/Sidebar/SidebarPlugin.py index 76effe84..03a8fd11 100644 --- a/plugins/Sidebar/SidebarPlugin.py +++ b/plugins/Sidebar/SidebarPlugin.py @@ -595,7 +595,7 @@ class UiWebsocketPlugin(object): if "ADMIN" not in permissions: return self.response(to, "You don't have permission to run this command") self.site.settings["autodownloadoptional"] = bool(owned) - self.site.update() + self.site.update(check_files=True) self.site.worker_manager.removeGoodFileTasks() def actionDbReload(self, to): diff --git a/src/Config.py b/src/Config.py index df208bd8..2e813bb6 100644 --- a/src/Config.py +++ b/src/Config.py @@ -8,7 +8,7 @@ class Config(object): def __init__(self, argv): self.version = "0.4.1" - self.rev = 1535 + self.rev = 1536 self.argv = argv self.action = None self.config_file = "zeronet.conf"