diff --git a/Sora/Utils/Analytics/Analytics.swift b/Sora/Utils/Analytics/Analytics.swift index c33e9de..e8b62ad 100644 --- a/Sora/Utils/Analytics/Analytics.swift +++ b/Sora/Utils/Analytics/Analytics.swift @@ -32,8 +32,7 @@ class AnalyticsManager { // Ensure the key is set with a default value if missing if defaults.object(forKey: "analyticsEnabled") == nil { - print("Setting default value for analyticsEnabled") - defaults.setValue(true, forKey: "analyticsEnabled") + defaults.setValue(false, forKey: "analyticsEnabled") } diff --git a/Sora/Utils/MediaPlayer/CustomPlayer/CustomPlayer.swift b/Sora/Utils/MediaPlayer/CustomPlayer/CustomPlayer.swift index 8ba7b34..3789541 100644 --- a/Sora/Utils/MediaPlayer/CustomPlayer/CustomPlayer.swift +++ b/Sora/Utils/MediaPlayer/CustomPlayer/CustomPlayer.swift @@ -245,8 +245,9 @@ class CustomMediaPlayerViewController: UIViewController { watchNextButton = UIButton(type: .system) watchNextButton.setTitle("Watch Next", for: .normal) + watchNextButton.setImage(UIImage(systemName: "forward.fill"), for: .normal) watchNextButton.backgroundColor = .white - watchNextButton.layer.cornerRadius = 32 + watchNextButton.layer.cornerRadius = 16 watchNextButton.setTitleColor(.black, for: .normal) watchNextButton.addTarget(self, action: #selector(watchNextTapped), for: .touchUpInside) watchNextButton.isHidden = true diff --git a/Sora/Views/SettingsView/SettingsSubViews/SettingsViewGeneral.swift b/Sora/Views/SettingsView/SettingsSubViews/SettingsViewGeneral.swift index 62e11e5..53060dc 100644 --- a/Sora/Views/SettingsView/SettingsSubViews/SettingsViewGeneral.swift +++ b/Sora/Views/SettingsView/SettingsSubViews/SettingsViewGeneral.swift @@ -11,7 +11,7 @@ struct SettingsViewGeneral: View { @AppStorage("episodeChunkSize") private var episodeChunkSize: Int = 100 @AppStorage("refreshModulesOnLaunch") private var refreshModulesOnLaunch: Bool = false @AppStorage("fetchEpisodeMetadata") private var fetchEpisodeMetadata: Bool = true - @AppStorage("analyticsEnabled") private var analyticsEnabled: Bool = true + @AppStorage("analyticsEnabled") private var analyticsEnabled: Bool = false @EnvironmentObject var settings: Settings var body: some View {