mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-12-07 23:35:22 +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
|
|
@ -286,7 +286,7 @@ class MailAccountHandler(LoggingMixin):
|
|||
override_correspondent_id=correspondent.id if correspondent else None, # NOQA: E501
|
||||
override_document_type_id=doc_type.id if doc_type else None, # NOQA: E501
|
||||
override_tag_ids=[tag.id] if tag else None,
|
||||
task_name=f"Mail: {att.filename}"
|
||||
task_name=att.filename[:100]
|
||||
)
|
||||
|
||||
processed_attachments += 1
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue