From 11b18ac980572b84ebc8810708e470b27bd4ef2a Mon Sep 17 00:00:00 2001 From: scigward <162128369+scigward@users.noreply.github.com> Date: Thu, 21 Aug 2025 14:09:08 +0300 Subject: [PATCH] Update EpisodeCell.swift --- Sora/Views/MediaInfoView/EpisodeCell/EpisodeCell.swift | 4 ---- 1 file changed, 4 deletions(-) diff --git a/Sora/Views/MediaInfoView/EpisodeCell/EpisodeCell.swift b/Sora/Views/MediaInfoView/EpisodeCell/EpisodeCell.swift index a812aa9..bd31c65 100644 --- a/Sora/Views/MediaInfoView/EpisodeCell/EpisodeCell.swift +++ b/Sora/Views/MediaInfoView/EpisodeCell/EpisodeCell.swift @@ -248,13 +248,11 @@ private extension EpisodeCell { var episodeInfo: some View { VStack(alignment: .leading) { HStack(spacing: 8) { - // Episode number uses default color now (no red) Text("Episode \(episodeID + 1)") .font(.system(size: 15)) .foregroundColor(.primary) if isFiller { - // Modern capsule badge that matches subtle UI (unchanged) Text("Filler") .font(.system(size: 12, weight: .semibold)) .padding(.horizontal, 8) @@ -561,7 +559,6 @@ private extension EpisodeCell { } else { fetchAnimeEpisodeDetails() } - // NOTE: filler info is now handled by MediaInfoView and passed in via `fillerEpisodes`. } } @@ -984,7 +981,6 @@ private extension EpisodeCell { }.resume() } - // Removed Jikan fetching from EpisodeCell. All filler/Jikan handling is now in MediaInfoView and passed in via `fillerEpisodes`. func handleFetchFailure(error: Error) { Logger.shared.log("Episode details fetch error: \(error.localizedDescription)", type: "Error")