diff --git a/couchpotato/core/_base/updater/main.py b/couchpotato/core/_base/updater/main.py index fabc4596..dab8077f 100644 --- a/couchpotato/core/_base/updater/main.py +++ b/couchpotato/core/_base/updater/main.py @@ -406,7 +406,7 @@ class DesktopUpdater(BaseUpdater): 'last_check': self.last_check, 'update_version': self.update_version, 'version': self.getVersion(), - 'branch': 'desktop_build', + 'branch': self.branch, } def check(self): diff --git a/couchpotato/static/scripts/page/about.js b/couchpotato/static/scripts/page/about.js index d155800f..ba451c84 100644 --- a/couchpotato/static/scripts/page/about.js +++ b/couchpotato/static/scripts/page/about.js @@ -117,7 +117,7 @@ var AboutSettingTab = new Class({ var self = this; var date = new Date(json.version.date * 1000); self.version_text.set('text', json.version.hash + (json.version.date ? ' ('+date.toLocaleString()+')' : '')); - self.updater_type.set('text', json.version.type); + self.updater_type.set('text', json.version.type + ', ' + json.branch); } });