Bugfix updater
This commit is contained in:
parent
31c8909dea
commit
23033255b8
|
@ -566,7 +566,7 @@ class Updater(threading.Thread):
|
||||||
try:
|
try:
|
||||||
current_version[2] = int(current_version[2])
|
current_version[2] = int(current_version[2])
|
||||||
except ValueError:
|
except ValueError:
|
||||||
current_version[2] = int(current_version[2].split(' ')[0])-1
|
current_version[2] = int(current_version[2].replace("b", "").split(' ')[0])-1
|
||||||
|
|
||||||
# Check if major versions are identical search for newest non-equal commit and update to this one
|
# Check if major versions are identical search for newest non-equal commit and update to this one
|
||||||
if major_version_update == current_version[0]:
|
if major_version_update == current_version[0]:
|
||||||
|
|
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue
Block a user