Skip to content

Commit

Permalink
reverted downgrade function to master
Browse files Browse the repository at this point in the history
  • Loading branch information
sraedler committed Mar 22, 2016
1 parent 01ff0aa commit 3cf766b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion resources/updateManager.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ def checkforupdates():
logger.info("Old Version: " + common.addon.getAddonInfo('version'))
logger.info("New Version: " + remoteVersion)

if (V(remoteVersion)>V(localVersion) or (V(remoteVersion)<V(localVersion) and cConfig().getSetting('UpdateSetting') == "Stable")):
if (V(remoteVersion)>V(localVersion)):
logger.info("New Version Available")

download.cDownload().download(REMOTE_PATH, LOCAL_FILE_NAME, False)
Expand Down

0 comments on commit 3cf766b

Please sign in to comment.