Skip to content

Commit

Permalink
Merge pull request #8 from xiachufang/crowser/storekit
Browse files Browse the repository at this point in the history
fix: Receipt download_id may be None
  • Loading branch information
crowser authored Jun 15, 2023
2 parents 3e89482 + 648e085 commit 7166173
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "storekit-python"
version = "0.0.1"
version = "0.0.2"
description = "The Storekit Python library provides support for in-app purchases and interactions with the App Store."
authors = [
{ name = "crowser", email = "xuwendi@xiachufang.com" },
Expand Down
2 changes: 1 addition & 1 deletion storekit/app_store_receipts/verify_receipt_response.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ class Receipt(BaseModel):
app_item_id: int = 0
application_version: str = ""
bundle_id: str = ""
download_id: int = 0
download_id: Optional[int] = None
expiration_date: str = ""
expiration_date_ms: int = 0
expiration_date_pst: str = ""
Expand Down

0 comments on commit 7166173

Please sign in to comment.