Updated version check path

This commit is contained in:
Profitroll 2022-07-22 10:54:57 +03:00
parent 6334002068
commit 078eac1446
1 changed files with 1 additions and 1 deletions

View File

@ -22,7 +22,7 @@ if loadJson("config.json")["owner"] == "SET-OWNER-ID" or loadJson("config.json")
if loadJson("config.json")["check_for_updates"]:
try:
serv_ver = json.loads(requests.get("https://api.end-play.xyz/version&apikey=publickey&app=yusarinbot").text)["version"]
serv_ver = json.loads(requests.get("https://api.end-play.xyz/version?app=yusarinbot&apikey=publickey").text)["version"]
if float(serv_ver) > version:
appendLog(f"YusarinBot version {serv_ver} is available. Download new version here: https://git.end-play.xyz/profitroll/YusarinBot/releases/latest")
appendLog(f"Currently using YusarinBot v{str(version)}")