Skip to content

Commit

Permalink
catalog: remove gzip decompression
Browse files Browse the repository at this point in the history
  • Loading branch information
doronz88 committed Mar 11, 2024
1 parent e5dca9f commit 014bcbe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion applecatalog/catalog.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ def __init__(self):
self.reload()

def reload(self) -> None:
self._catalog = plistlib.loads(gzip.decompress(requests.get(APPLE_SEED_URL, verify=False).content))
self._catalog = plistlib.loads(requests.get(APPLE_SEED_URL, verify=False).content)

@property
def date(self) -> datetime.datetime:
Expand Down

0 comments on commit 014bcbe

Please sign in to comment.