From c60db65bce5abb2e9c75a78f2d4518db93b5807a Mon Sep 17 00:00:00 2001 From: lashman Date: Sat, 11 Apr 2026 00:07:00 +0300 Subject: [PATCH] fix corrupted middle dot character across 7 files --- src/components/detail/PlaylistView.tsx | 4 ++-- src/components/detail/SeriesSection.tsx | 2 +- src/components/player/EpisodesPanel.tsx | 4 ++-- src/components/player/NowPlaying.tsx | 4 ++-- src/components/player/UpNext.tsx | 2 +- src/components/ui/ContentRow.tsx | 2 +- src/components/ui/QuickLookModal.tsx | 4 ++-- 7 files changed, 11 insertions(+), 11 deletions(-) diff --git a/src/components/detail/PlaylistView.tsx b/src/components/detail/PlaylistView.tsx index 5fb6365..69fe1e1 100644 --- a/src/components/detail/PlaylistView.tsx +++ b/src/components/detail/PlaylistView.tsx @@ -427,8 +427,8 @@ export default function PlaylistView({ item, serverUrl }: Props) {

{items.length} {items.length === 1 ? 'item' : 'items'} - {totalRuntime && <> · {totalRuntime}} - {watchedCount > 0 && <> · {watchedCount} watched} + {totalRuntime && <> · {totalRuntime}} + {watchedCount > 0 && <> · {watchedCount} watched}

diff --git a/src/components/detail/SeriesSection.tsx b/src/components/detail/SeriesSection.tsx index 4439d02..285fab3 100644 --- a/src/components/detail/SeriesSection.tsx +++ b/src/components/detail/SeriesSection.tsx @@ -248,7 +248,7 @@ export default function SeriesSection({ seriesId, imdbId, tmdbId }: Props) { {count === 1 ? 'episode' : 'episodes'} {runtimeLabel && ( <> - · + · {runtimeLabel} total diff --git a/src/components/player/EpisodesPanel.tsx b/src/components/player/EpisodesPanel.tsx index 60a3d04..d9d4012 100644 --- a/src/components/player/EpisodesPanel.tsx +++ b/src/components/player/EpisodesPanel.tsx @@ -269,11 +269,11 @@ export default function EpisodesPanel({ }`} > {seasonNum != null && epNum != null - ? `S${seasonNum} · E${epNum}` + ? `S${seasonNum} · E${epNum}` : `Episode ${epNum ?? '?'}`} {runtimeTicks > 0 && ( - · {formatRuntime(runtimeTicks)} + · {formatRuntime(runtimeTicks)} )} diff --git a/src/components/player/NowPlaying.tsx b/src/components/player/NowPlaying.tsx index c4d8334..e26b4d5 100644 --- a/src/components/player/NowPlaying.tsx +++ b/src/components/player/NowPlaying.tsx @@ -173,7 +173,7 @@ export default function NowPlaying({ isOpen, onClose }: NowPlayingProps) { {artist} {album && ( <> - · + · {album} )} @@ -285,7 +285,7 @@ export default function NowPlaying({ isOpen, onClose }: NowPlayingProps) { > Queue - · + · {queue.length} diff --git a/src/components/player/UpNext.tsx b/src/components/player/UpNext.tsx index 437917c..8d42181 100644 --- a/src/components/player/UpNext.tsx +++ b/src/components/player/UpNext.tsx @@ -28,7 +28,7 @@ export default function UpNext({ const thumb = getBestImage(serverUrl, nextItem, 'thumb', 480) const epLabel = nextItem.ParentIndexNumber != null && nextItem.IndexNumber != null - ? `S${nextItem.ParentIndexNumber} · E${nextItem.IndexNumber}` + ? `S${nextItem.ParentIndexNumber} · E${nextItem.IndexNumber}` : '' return ( diff --git a/src/components/ui/ContentRow.tsx b/src/components/ui/ContentRow.tsx index 09f504c..19a6802 100644 --- a/src/components/ui/ContentRow.tsx +++ b/src/components/ui/ContentRow.tsx @@ -279,7 +279,7 @@ function ListRowCard({ item, index }: { item: BaseItemDto; index: number }) { item.ProductionYear, item.RunTimeTicks ? formatRuntime(item.RunTimeTicks) : '', (item.Genres || []).slice(0, 2).join(', '), - ].filter(Boolean).join(' · ') + ].filter(Boolean).join(' · ') return ( {c.name} {c.character && as {c.character}} - {i < cast.length - 1 && ·} + {i < cast.length - 1 && ·} ))}

@@ -218,5 +218,5 @@ export default function QuickLookModal() { } function Dot() { - return · + return · }