From 53a4bbee250d9b4c1884e3b2bd0bee07e54e8737 Mon Sep 17 00:00:00 2001 From: Andre Medeiros Date: Sat, 7 May 2022 13:01:57 -0400 Subject: [PATCH] Avoid Sandbox things --- internal/itunes/receipt.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/itunes/receipt.go b/internal/itunes/receipt.go index 8a609af..6ea698b 100644 --- a/internal/itunes/receipt.go +++ b/internal/itunes/receipt.go @@ -279,7 +279,7 @@ func (iapr *IAPResponse) handleAppleResponse() { // For sandbox environment, be more lenient (just ensure bundle ID is accurate) because otherwise you'll break // things for TestFlight users (see: https://twitter.com/ChristianSelig/status/1414990459861098496) // TODO(andremedeiros): let this through for now - if iapr.Environment == Sandbox { + if iapr.Environment == Sandbox && false { ultraProduct := VerificationProduct{Name: "ultra", Status: "SANDBOX", SubscriptionType: "SANDBOX"} proProduct := VerificationProduct{Name: "pro", Status: "SANDBOX"} communityIconsProduct := VerificationProduct{Name: "community_icons", Status: "SANDBOX"}