Skip to content

Commit

Permalink
Merge branch 'trunk' into stats/apply-api-changes-to-prevent-reset
Browse files Browse the repository at this point in the history
  • Loading branch information
leandroalonso committed Dec 12, 2024
2 parents c68ba65 + 591aba4 commit 540af51
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 11 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,6 @@ public enum FeatureFlag: String, CaseIterable {
/// Whether End Of Year feature is enabled
case endOfYear

/// Enable retrieving episode artwork from the RSS feed
case episodeFeedArtwork

/// Enable chapters to be loaded from the RSS feed
case rssChapters

Expand Down Expand Up @@ -161,8 +158,6 @@ public enum FeatureFlag: String, CaseIterable {
false
case .endOfYear:
false
case .episodeFeedArtwork:
false
case .rssChapters:
false
case .errorLogoutHandling:
Expand Down Expand Up @@ -258,8 +253,6 @@ public enum FeatureFlag: String, CaseIterable {
shouldEnableSyncedSettings ? "new_settings_storage" : nil
case .settingsSync:
shouldEnableSyncedSettings ? "settings_sync" : nil
case .episodeFeedArtwork:
"episode_artwork"
case .rssChapters:
"rss_chapters"
case .categoriesRedesign:
Expand Down
4 changes: 0 additions & 4 deletions podcasts/EpisodeArtwork.swift
Original file line number Diff line number Diff line change
Expand Up @@ -46,10 +46,6 @@ class EpisodeArtwork {
}

private func loadEpisodeArtworkFromUrl(podcastUuid: String, episodeUuid: String) {
guard FeatureFlag.episodeFeedArtwork.enabled else {
return
}

Task { [weak self] in
guard let self else {
return
Expand Down

0 comments on commit 540af51

Please sign in to comment.