From b7ee17ffba104eb0f8c4eb3773d46e3ab6457e41 Mon Sep 17 00:00:00 2001 From: SergeantPanda Date: Thu, 25 Jun 2026 11:06:07 -0500 Subject: [PATCH] fix(tasks): Remove unnecessary raise statement in refresh_single_m3u_account function to improve error handling and maintain task flow. --- apps/m3u/tasks.py | 1 - 1 file changed, 1 deletion(-) diff --git a/apps/m3u/tasks.py b/apps/m3u/tasks.py index be2a612f..462f45db 100644 --- a/apps/m3u/tasks.py +++ b/apps/m3u/tasks.py @@ -3194,7 +3194,6 @@ def refresh_single_m3u_account(account_id): notify_error=True, ws_error=str(e)[:500], ) - raise finally: _ensure_m3u_refresh_terminal_status(account_id) _release_task_db_connection()