1
0
mirror of https://github.com/Escartem/AnimeWwise.git synced 2026-06-05 07:50:23 +08:00

fix update search

This commit is contained in:
Escartem
2025-01-06 10:02:17 +01:00
parent 55cfbc7bda
commit 970b031f28
2 changed files with 2 additions and 2 deletions

2
app.py
View File

@@ -98,7 +98,7 @@ class AnimeWwise(QMainWindow):
latestVersionReq = get("https://raw.githubusercontent.com/Escartem/AnimeWwise/master/version.json") latestVersionReq = get("https://raw.githubusercontent.com/Escartem/AnimeWwise/master/version.json")
if latestVersionReq.status_code == 200: if latestVersionReq.status_code == 200:
latestVersion = json.loads(latestMaps.text) latestVersion = json.loads(latestVersionReq.text)
if currentVersion["version"] < latestVersion["version"]: if currentVersion["version"] < latestVersion["version"]:
print("Update found !") print("Update found !")

View File

@@ -1,4 +1,4 @@
{ {
"version": 21, "version": 211,
"mapsVersion": 89 "mapsVersion": 89
} }