From f19ad91af6a0f23efd362e8ea6b09d80eb205151 Mon Sep 17 00:00:00 2001 From: Lyreplus Date: Fri, 13 Dec 2024 10:25:47 +0100 Subject: [PATCH] fix: fix lab ore entry point --- commands/commands.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/commands.py b/commands/commands.py index ac68eae..d0fd95d 100644 --- a/commands/commands.py +++ b/commands/commands.py @@ -46,7 +46,7 @@ async def ore(update: Update, context: ContextTypes.DEFAULT_TYPE): await update.message.reply_text(text, parse_mode=ParseMode.HTML) return email = str(db.get_mail_from_id_db(user_id)) - url = f"https://api.eagletrt.it/api/v2/oreLab?username={email}" + url = f"https://api.eagletrt.it/api/v2/lab/ore?username={email}" response = requests.get(url)