Verifies StoreApp.isPledged status when updating source

This commit is contained in:
Riley Testut
2023-11-20 14:06:04 -06:00
committed by Magesh K
parent 47b69b40aa
commit 91ea34110b
3 changed files with 71 additions and 1 deletions

View File

@@ -224,7 +224,7 @@ public extension DatabaseManager
let predicate = NSPredicate(format: "%K == %@", #keyPath(PatreonAccount.identifier), patreonAccountID)
let patreonAccount = PatreonAccount.first(satisfying: predicate, in: context)
let patreonAccount = PatreonAccount.first(satisfying: predicate, in: context, requestProperties: [\.relationshipKeyPathsForPrefetching: [#keyPath(PatreonAccount._pledges)]])
return patreonAccount
}
}