From e0fce7e2530e0eb78e04016ed2708d82f31f9dfa Mon Sep 17 00:00:00 2001 From: Minhaz Ahmed Syrus Date: Tue, 6 Nov 2018 14:25:38 +0600 Subject: [PATCH] Add missing notification verification fields --- appstore/validator.go | 1 + 1 file changed, 1 insertion(+) diff --git a/appstore/validator.go b/appstore/validator.go index 1ce27e7..6ff3fbe 100644 --- a/appstore/validator.go +++ b/appstore/validator.go @@ -171,5 +171,6 @@ func (c *Client) parseResponse(resp *http.Response, result interface{}, ctx cont // 21007 is found when the receipt is from the test environment return Sandbox, json.NewDecoder(resp.Body).Decode(result) } + return Production, nil }