From b2e49bf99cc8be345dc4fb51338ca324ae0afd5f Mon Sep 17 00:00:00 2001 From: DasMoorhuhn Date: Thu, 30 Nov 2023 21:30:13 +0100 Subject: [PATCH] changed to json --- src/updater.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/updater.py b/src/updater.py index 86eb06e..e31aa29 100644 --- a/src/updater.py +++ b/src/updater.py @@ -9,7 +9,7 @@ def read_version(): def check_for_update(): - request = "https://gitlab.com/DasMoorhuhn/autopicture-v3/-/raw/main/src/.version.yml" + request = "https://gitlab.com/DasMoorhuhn/autopicture-v3/-/raw/main/src/.version.json" response = requests.get(request) if not response.ok: return print(response.text)