From aca5cc6906f516bb73966350348463b74cd371c7 Mon Sep 17 00:00:00 2001 From: Francesco <100066266+cranci1@users.noreply.github.com> Date: Thu, 5 Jun 2025 18:49:25 +0200 Subject: [PATCH] uh? --- Sora/Views/MediaInfoView/MediaInfoView.swift | 6 ------ 1 file changed, 6 deletions(-) diff --git a/Sora/Views/MediaInfoView/MediaInfoView.swift b/Sora/Views/MediaInfoView/MediaInfoView.swift index b32d41f..638ba75 100644 --- a/Sora/Views/MediaInfoView/MediaInfoView.swift +++ b/Sora/Views/MediaInfoView/MediaInfoView.swift @@ -584,10 +584,6 @@ struct MediaInfoView: View { private var playAndBookmarkSection: some View { HStack(spacing: 12) { ZStack(alignment: .leading) { - RoundedRectangle(cornerRadius: 25) - .fill(Color.accentColor) - .frame(height: 48) - Button(action: { playFirstUnwatchedEpisode() }) { @@ -601,7 +597,6 @@ struct MediaInfoView: View { .frame(maxWidth: .infinity) .padding(.vertical, 12) .padding(.horizontal, 20) - .background(Color.clear) .contentShape(RoundedRectangle(cornerRadius: 25)) } .disabled(isFetchingEpisode) @@ -949,7 +944,6 @@ struct MediaInfoView: View { } private func updateLatestProgress() { - Logger.shared.log("Called, Called", type: "General") for ep in episodeLinks.reversed() { let last = UserDefaults.standard.double(forKey: "lastPlayedTime_\(ep.href)") let total = UserDefaults.standard.double(forKey: "totalTime_\(ep.href)")