From 1f67d4c0a6297fdc9938ad8dfd2ee0cb178fe8b2 Mon Sep 17 00:00:00 2001 From: Colin Powell Date: Sat, 14 Mar 2026 02:04:30 -0400 Subject: [PATCH] [music] Fix logdata bug --- vrobbler/apps/music/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vrobbler/apps/music/models.py b/vrobbler/apps/music/models.py index fff2324..cf7e723 100644 --- a/vrobbler/apps/music/models.py +++ b/vrobbler/apps/music/models.py @@ -611,7 +611,7 @@ class Track(ScrobblableMixin): return f"{self.title} by {self.artist}" def logdata_cls(self): - return TrackLogData + return TrackLogData() @property def primary_album(self):