From fcd5825308f3b6739ceaaf8bd41e38a0de7c0f93 Mon Sep 17 00:00:00 2001 From: Hiram <> Date: Mon, 17 Feb 2025 00:53:10 +0800 Subject: [PATCH] [bug] fix film tag show is empty --- src/renderer/src/utils/common/film.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/renderer/src/utils/common/film.ts b/src/renderer/src/utils/common/film.ts index 702f98544..007980428 100644 --- a/src/renderer/src/utils/common/film.ts +++ b/src/renderer/src/utils/common/film.ts @@ -413,7 +413,7 @@ const formatContent = (text: string | undefined | null): string => { } if (text.startsWith('/') || text.endsWith('/')) { - text = text.split('/').filter(Boolean).join(' | '); + text = text.split('/').filter(Boolean).join(', '); } return text;