[scrobbles] Fix typo in timezone saving

This commit is contained in:
2024-04-21 13:29:36 -04:00
parent 5994dccf23
commit dc3a77f14f

View File

@ -559,7 +559,7 @@ class Scrobble(TimeStampedModel):
timezone = settings.TIME_ZONE timezone = settings.TIME_ZONE
if self.user and self.user.profile: if self.user and self.user.profile:
timezone = self.user.profile.timezone timezone = self.user.profile.timezone
self.timzeone = timezone self.timezone = timezone
# Microseconds mess up Django's filtering, and we don't need be that specific # Microseconds mess up Django's filtering, and we don't need be that specific
if self.timestamp: if self.timestamp: