Skip to content

Commit

Permalink
Backport eb99a54
Browse files Browse the repository at this point in the history
  • Loading branch information
Gobot1234 committed May 20, 2023
1 parent 79ea714 commit e5af65c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion steam/game.py
Expand Up @@ -760,7 +760,7 @@ def __init__(self, state: ConnectionState, id: int | str, data: game.WishlistGam
self.score = data["review_score"]
self.total_reviews = int(data["reviews_total"].replace(",", ""))
self.review_status = ReviewType[data["review_desc"].replace(" ", "")]
self.created_at = DateTime.from_timestamp(int(data["release_date"]))
self.created_at = DateTime.from_timestamp(float(data["release_date"]))
self.type: str = data["type"]
self.screenshots = [
f"https://cdn.cloudflare.steamstatic.com/steam/apps/{self.id}/{screenshot_url}"
Expand Down

0 comments on commit e5af65c

Please sign in to comment.