diff --git a/data/interfaces/default/base.html b/data/interfaces/default/base.html index f95be978..c7aa81b7 100644 --- a/data/interfaces/default/base.html +++ b/data/interfaces/default/base.html @@ -82,6 +82,9 @@
diff --git a/headphones/versioncheck.py b/headphones/versioncheck.py index 30098886..5969003a 100644 --- a/headphones/versioncheck.py +++ b/headphones/versioncheck.py @@ -147,7 +147,7 @@ def checkGithub(): logger.info('Comparing currently installed version with latest GitHub version') url = 'https://api.github.com/repos/%s/headphones/compare/%s...%s' % ( - headphones.CONFIG.GIT_USER, headphones.LATEST_VERSION, headphones.CURRENT_VERSION) + headphones.CONFIG.GIT_USER, headphones.LATEST_VERSION, headphones.CURRENT_VERSION) commits = request.request_json(url, timeout=20, whitelist_status_code=404, validator=lambda x: type(x) == dict)