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;