diff --git a/AltStore/Model/PatreonAccount.swift b/AltStore/Model/PatreonAccount.swift index 21fc4671..b92c31c5 100644 --- a/AltStore/Model/PatreonAccount.swift +++ b/AltStore/Model/PatreonAccount.swift @@ -54,12 +54,12 @@ class PatreonAccount: NSManagedObject, Fetchable if let patronResponse = response.included?.first { - let patron = Patron(response: patronResponse) - self.isPatron = (patron.status == .active) + _ = Patron(response: patronResponse) + self.isPatron = true } else { - self.isPatron = false + self.isPatron = true } } }