Fix: cast custom fields values list to list for other DB types

Closes #6482
This commit is contained in:
shamoon 2024-04-24 01:35:45 -07:00
parent d03e48ea88
commit 7a0334f353

View File

@ -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(