Updated calls to autoupdate feature for alpha channel

This commit is contained in:
2018-12-27 11:11:30 -06:00
parent 2e025ebf20
commit 8f52ae6f0c
2 changed files with 3 additions and 3 deletions

View File

@@ -56,7 +56,7 @@ class Controller(object):
self.create_controls()
self.window.Show()
self.connect_events()
call_threaded(updater.do_update)
call_threaded(updater.do_update, update_type=self.session.settings["general"]["update_channel"])
def create_controls(self):
log.debug("Creating controls for the window...")
@@ -266,7 +266,7 @@ class Controller(object):
b.get_more_items()
def check_for_updates(self, *args, **kwargs):
update = updater.do_update()
update = updater.do_update(update_type=self.session.settings["general"]["update_channel"])
if update == False:
commonMessages.no_update_available()