Parcourir la source

Fix str rep for scrobbles

Colin Powell il y a 2 ans
Parent
commit
7605c672f6
1 fichiers modifiés avec 2 ajouts et 1 suppressions
  1. 2 1
      vrobbler/apps/scrobbles/models.py

+ 2 - 1
vrobbler/apps/scrobbles/models.py

@@ -70,7 +70,8 @@ class Scrobble(TimeStampedModel):
         return media_obj
 
     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
     def create_or_update_for_video(