Fix scrobbles same song over and over error

This commit is contained in:
2023-03-30 01:48:20 -04:00
parent 6c060f24ec
commit 7d1e070ee6
2 changed files with 1 additions and 9 deletions

View File

@ -538,7 +538,7 @@ class Scrobble(TimeStampedModel):
if self.media_obj.__class__.__name__ in LONG_PLAY_MEDIA.values():
logger.info(f"No - Long play media")
updatable = False
if self.percent_played > 100:
if self.percent_played >= 100:
logger.info(f"No - 100% played - {self.id} - {self.source}")
updatable = False
if self.is_stale: