Skip to content

Commit 3d20133

Browse files
committed
Fix image date
1 parent e008cc2 commit 3d20133

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "recnetpy"
7-
version = "0.2.6"
7+
version = "0.2.61"
88
authors = [
99
{ name="RecNetBot Development"}
1010
]

src/recnetpy/dataclasses/image.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ def patch_data(self, data: 'ImageResponse') -> None:
8585
self.tagged_player_ids = []
8686
self.room_id = data['RoomId']
8787
self.event_id = data['PlayerEventId']
88-
self.created_at = date_to_unix(data['CreatedAt'], new=True)
88+
self.created_at = date_to_unix(data['CreatedAt'], new=False)
8989
self.cheer_count = data['CheerCount']
9090
self.comment_count = data['CommentCount']
9191

0 commit comments

Comments
 (0)