Don't check files on siteUpdate

This commit is contained in:
shortcutme 2016-09-14 10:51:10 +02:00
parent 931426e4fc
commit 14544922bf
1 changed files with 2 additions and 2 deletions

View File

@ -623,9 +623,9 @@ class UiWebsocket(object):
site.websockets.append(self)
# Update site content.json
def actionSiteUpdate(self, to, address):
def actionSiteUpdate(self, to, address, check_files=False):
def updateThread():
site.update(check_files=True)
site.update(check_files=check_files)
self.response(to, "Updated")
site = self.server.sites.get(address)