From a8ac3357a088950f8e7e6627fcc7e54a07b9fa8a Mon Sep 17 00:00:00 2001 From: Audionut Date: Fri, 11 Oct 2024 17:15:16 +1000 Subject: [PATCH] Print feedback for MTV bug See https://github.com/Audionut/Upload-Assistant/issues/47 --- src/trackers/MTV.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/trackers/MTV.py b/src/trackers/MTV.py index 5aef4e99..b4c1c8c6 100644 --- a/src/trackers/MTV.py +++ b/src/trackers/MTV.py @@ -172,7 +172,8 @@ async def upload_with_retry(self, meta, cookiefile, common, img_host_index=1): if "authkey.php" in response.url: console.print("[red]No DL link in response, It may have uploaded, check manually.") else: - console.print("[red]Upload Failed. It doesn't look like you are logged in.") + console.print("[red]Upload Failed. Either you are not logged in......") + console.print("[red]or you are hitting this site bug: https://www.morethantv.me/forum/thread/3338?") except Exception: console.print("[red]It may have uploaded, check manually.") print(traceback.print_exc())