Skip to content

Commit

Permalink
Forgot to change this line
Browse files Browse the repository at this point in the history
  • Loading branch information
frostplexx authored Nov 30, 2023
1 parent e2fc33d commit a3a6547
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion winston/models/Subreddit.swift
Original file line number Diff line number Diff line change
Expand Up @@ -457,7 +457,7 @@ struct SubredditData: Codable, GenericRedditEntityDataType, Defaults.Serializabl
self.name = try container.decode(String.self, forKey: .name)
self.quarantine = try container.decodeIfPresent(Bool.self, forKey: .quarantine)
self.hide_ads = try container.decodeIfPresent(Bool.self, forKey: .hide_ads)
self.prediction_leaderboard_entry_type = try container.decodeIfPresent(String.self, forKey: .prediction_leaderboard_entry_type)
self.prediction_leaderboard_entry_type = try container.decodeIfPresent(Double.self, forKey: .prediction_leaderboard_entry_type)
self.emojis_enabled = try container.decodeIfPresent(Bool.self, forKey: .emojis_enabled)
self.advertiser_category = try container.decodeIfPresent(String.self, forKey: .advertiser_category)
self.public_description = try container.decode(String.self, forKey: .public_description)
Expand Down

0 comments on commit a3a6547

Please sign in to comment.