Skip to content

Commit

Permalink
[bug] fix film tag show is empty
Browse files Browse the repository at this point in the history
  • Loading branch information
Hiram committed Feb 16, 2025
1 parent 9e22fea commit fcd5825
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/renderer/src/utils/common/film.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit fcd5825

Please sign in to comment.