From bb1fbd6cf522d5c6e80c25f55e51a0b5c74b3c95 Mon Sep 17 00:00:00 2001 From: Simon Date: Fri, 23 Jan 2026 01:07:33 +0700 Subject: [PATCH] fix: quote field name in playlist desc update --- backend/config/management/commands/ta_startup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/config/management/commands/ta_startup.py b/backend/config/management/commands/ta_startup.py index e0c8d16d..5f7b25a5 100644 --- a/backend/config/management/commands/ta_startup.py +++ b/backend/config/management/commands/ta_startup.py @@ -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", }, )