mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-12-06 14:55:07 +01:00
Fix: Use correct custom field id when splitting (#6303)
This commit is contained in:
parent
ae2b302962
commit
5450bfb67b
1 changed files with 1 additions and 1 deletions
|
|
@ -116,7 +116,7 @@ class DocumentMetadataOverrides:
|
||||||
).values_list("id", flat=True),
|
).values_list("id", flat=True),
|
||||||
)
|
)
|
||||||
overrides.custom_field_ids = list(
|
overrides.custom_field_ids = list(
|
||||||
doc.custom_fields.values_list("id", flat=True),
|
doc.custom_fields.values_list("field", flat=True),
|
||||||
)
|
)
|
||||||
|
|
||||||
groups_with_perms = get_groups_with_perms(
|
groups_with_perms = get_groups_with_perms(
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue