From 53ef6e306ff6a83666f04be7dc06ebed78061901 Mon Sep 17 00:00:00 2001 From: WhatDidYouExpect <89535984+WhatDidYouExpect@users.noreply.github.com> Date: Sun, 23 Mar 2025 14:25:50 +0100 Subject: [PATCH] shortened URL --- bot.py | 2 +- config.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bot.py b/bot.py index d855999..989422b 100644 --- a/bot.py +++ b/bot.py @@ -203,7 +203,7 @@ def check_for_update(): if not latest_version or not download_url: print(f"{RED}{get_translation(LOCALE, 'invalid_server')}{RESET}") return None, None - + local_version = get_local_version() if local_version == "0.0.0": with open(LOCAL_VERSION_FILE, "w") as f: diff --git a/config.py b/config.py index 53cb6a9..d4e6b0b 100644 --- a/config.py +++ b/config.py @@ -4,7 +4,7 @@ import platform import random load_dotenv() -VERSION_URL = "https://goober.whatdidyouexpect.eu" +VERSION_URL = "https://goober.expect.ovh" UPDATE_URL = VERSION_URL+"/latest_version.json" LOCAL_VERSION_FILE = "current_version.txt" TOKEN = os.getenv("DISCORD_BOT_TOKEN")