Fix str rep for scrobbles

This commit is contained in:
2023-01-16 23:54:19 -05:00
parent 8d1df806d7
commit 7605c672f6

View File

@ -70,7 +70,8 @@ class Scrobble(TimeStampedModel):
return media_obj return media_obj
def __str__(self): def __str__(self):
return f"Scrobble of {self.media_obj} {self.timestamp.year}-{self.timestamp.month}" timestamp = self.timestamp.strftime('%Y-%m-%d')
return f"Scrobble of {self.media_obj} ({timestamp})"
@classmethod @classmethod
def create_or_update_for_video( def create_or_update_for_video(