Przeglądaj źródła

[scrobbles] Fix bug in mixin import

Colin Powell 3 tygodni temu
rodzic
commit
c8926cf887
1 zmienionych plików z 2 dodań i 2 usunięć
  1. 2 2
      vrobbler/apps/scrobbles/mixins.py

+ 2 - 2
vrobbler/apps/scrobbles/mixins.py

@@ -111,9 +111,9 @@ class ScrobblableMixin(TimeStampedModel):
 
     @property
     def logdata_cls(self) -> None:
-        from scrobbles.dataclasses import ScrobbleLogData
+        from scrobbles.dataclasses import BaseLogData
 
-        return ScrobbleLogData
+        return BaseLogData
 
     @property
     def subtitle(self) -> str: