Skip to content

Commit b827b4e

Browse files
committed
Fix status reference #13
1 parent d9ee3c7 commit b827b4e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

storekit/appstore.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ def validate(self, receipt, password=None):
3434

3535
api_response = requests.post(self.url, json=receipt_json).json()
3636

37-
status = api_response['response']['status']
37+
status = api_response['status']
3838

3939
if status != api_result_ok:
4040
error = AppValidationError(api_result_errors.get(status, 'Unknown API status'), api_response)

0 commit comments

Comments
 (0)