Compare commits

..

2 Commits
0.7.0 ... 0.7.1

Author SHA1 Message Date
7796ff5786 Bump version to 0.7.1 2023-01-22 18:34:23 -05:00
2285c5bfd6 Fix bug in jellyfin scrobbler 2023-01-22 18:34:02 -05:00
2 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,6 @@
[tool.poetry]
name = "vrobbler"
version = "0.7.0"
version = "0.7.1"
description = ""
authors = ["Colin Powell <colin@unbl.ink>"]

View File

@ -105,7 +105,7 @@ class Scrobble(TimeStampedModel):
.order_by('-modified')
.first()
)
if scrobble and scrobble.playback_perecnt <= 100:
if scrobble and scrobble.playback_percent <= 100:
logger.info(
f"Found existing scrobble for video {video}, updating",
{"scrobble_data": scrobble_data},