mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-04-02 13:45:10 -05:00
Fix: dont link related document if document is in the trash
This commit is contained in:
parent
70d9a6fd36
commit
007e5a5473
@ -1615,7 +1615,11 @@ class TasksViewSerializer(OwnedObjectSerializer):
|
||||
case states.SUCCESS:
|
||||
re = self.created_doc_re
|
||||
case states.FAILURE:
|
||||
re = self.duplicate_doc_re
|
||||
re = (
|
||||
self.duplicate_doc_re
|
||||
if "existing document is in the trash" not in obj.result
|
||||
else None
|
||||
)
|
||||
if re is not None:
|
||||
try:
|
||||
result = re.search(obj.result).group(1)
|
||||
|
Loading…
x
Reference in New Issue
Block a user