From 61f7e73961f74c4aae184f28a11deee7dbc819a5 Mon Sep 17 00:00:00 2001 From: Trenton Holmes <797416+stumpylog@users.noreply.github.com> Date: Tue, 31 Jan 2023 20:48:18 -0800 Subject: [PATCH] Fixes status payload filename after splitting --- src/documents/tasks.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/documents/tasks.py b/src/documents/tasks.py index 77b48e33d..34b75ce12 100644 --- a/src/documents/tasks.py +++ b/src/documents/tasks.py @@ -164,7 +164,7 @@ def consume_file( # notify the sender, otherwise the progress bar # in the UI stays stuck payload = { - "filename": override_filename, + "filename": override_filename or path.name, "task_id": task_id, "current_progress": 100, "max_progress": 100,