From 8d381950978f794832479e5c994cb50bd20429ee Mon Sep 17 00:00:00 2001 From: TheErrorExe <161362055+TheErrorExe@users.noreply.github.com> Date: Thu, 3 Jul 2025 19:42:13 +0000 Subject: [PATCH] bugfix --- riivivetube.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/riivivetube.py b/riivivetube.py index 8af53d5..549562b 100644 --- a/riivivetube.py +++ b/riivivetube.py @@ -211,7 +211,7 @@ def get_video(): subprocess.run(ffmpeg_cmd) - return send_file(webm_path, as_attachment=True) if os.path.exists(webm_path) else "", 500 + return send_file(webm_path, as_attachment=True) @app.route('/apiplayer-loader')