Skip to content

Commit 375eb12

Browse files
committed
(fix) Re-add version check
1 parent f57cf82 commit 375eb12

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

BabbleApp/babbleapp.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ def main():
115115
latestversion = response.json()["name"]
116116

117117
# If what we scraped and hardcoded versions are same, assume we are up to date.
118-
if False: #appversion == latestversion:
118+
if appversion == latestversion:
119119
print(
120120
f'\033[92m[{lang._instance.get_string("log.info")}] {lang._instance.get_string("babble.latestVersion")}! [{latestversion}]\033[0m'
121121
)

0 commit comments

Comments
 (0)