fix: quote field name in playlist desc update

This commit is contained in:
Simon 2026-01-23 01:07:33 +07:00
parent 97dee15b98
commit bb1fbd6cf5
No known key found for this signature in database
GPG Key ID: 2C15AA5E89985DD4
1 changed files with 1 additions and 1 deletions

View File

@ -330,7 +330,7 @@ class Command(BaseCommand):
desc="fix playlist description data type",
query={"term": {"playlist_description": {"value": False}}},
script={
"source": "ctx._source.remove(playlist_description)",
"source": "ctx._source.remove('playlist_description')",
"lang": "painless",
},
)