Adds comments explaining not to rethrow errors from VerifyAppPledgeOperation

This commit is contained in:
Riley Testut
2023-12-08 18:17:22 -06:00
committed by Magesh K
parent 4514fe1c2c
commit b0e43b8b97

View File

@@ -26,6 +26,13 @@ class VerifyAppPledgeOperation: ResultOperation<Void>
{
super.main()
// _Don't_ rethrow earlier errors, or else user will only be taken to Patreon post if connected to same WiFi as AltServer.
// if let error = self.context.error
// {
// self.finish(.failure(error))
// return
// }
Task<Void, Never>.detached(priority: .medium) {
do
{