mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-12-14 18:46:52 +01:00
workaround for a bug in django-q: task results with too long names would not show up in the result lists.
This commit is contained in:
parent
9e31429732
commit
d8e27600be
3 changed files with 4 additions and 4 deletions
|
|
@ -56,4 +56,4 @@ class UploadForm(forms.Form):
|
|||
async_task("documents.tasks.consume_file",
|
||||
f.name,
|
||||
override_filename=original_filename,
|
||||
task_name=os.path.basename(original_filename))
|
||||
task_name=os.path.basename(original_filename)[:100])
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue