mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-04-02 13:45:10 -05:00
Fix: cast custom fields values list to list for other DB types
Closes #6482
This commit is contained in:
parent
d03e48ea88
commit
7a0334f353
@ -766,7 +766,7 @@ class DocumentViewSet(
|
||||
|
||||
# custom fields
|
||||
for entry in LogEntry.objects.filter(
|
||||
object_pk__in=doc.custom_fields.values_list("id", flat=True),
|
||||
object_pk__in=list(doc.custom_fields.values_list("id", flat=True)),
|
||||
content_type=ContentType.objects.get_for_model(CustomFieldInstance),
|
||||
).select_related("actor"):
|
||||
entries.append(
|
||||
|
Loading…
x
Reference in New Issue
Block a user