sessions / b8384166de70ab8faa822b399171ac44cd22d885

/home/powellc/src/code.unbl.ink/secstate/vrobbler

This commit has no recorded session.

diff

show whitespace

commit b8384166de70ab8faa822b399171ac44cd22d885Author: Colin Powell <colin@unbl.ink>Date:   Tue Jun 16 11:30:54 2026 -0400    [music] Fix logdata lookup for musicdiff --git a/PROJECT.org b/PROJECT.orgindex 36e49e9..7f23fe8 100644--- a/PROJECT.org+++ b/PROJECT.org@@ -88,7 +88,7 @@ fetching and simple saving. *** Metadata sources **** Scraper -* Backlog [0/19] :vrobbler:project:personal:+* Backlog [1/20] :vrobbler:project:personal: ** TODO [#C] Create small utility to clean up tracks scrobbled with wonky playback times :bug:music:scrobbles: :PROPERTIES: :ID:       702462cf-d54b-48c6-8a7c-78b8de751deb@@ -578,6 +578,10 @@ named constants for maintainability.   - ~vrobbler/apps/webpages/models.py~ (line 290) -- ="url"=   - ~vrobbler/apps/scrobbles/importers/tsv.py~ (line 55) -- ="S"= completion status +** DONE [#A] Error with loading logdict :scrobbles:bug:logdata:+:PROPERTIES:+:ID:       92d4fa16-4b90-47e0-95ae-472bdca582ce+:END:  * Version 53.0 [5/5] ** DONE [#B] Add a /trends/ page that shows trends based on scrobble data :feature:trends:scrobbles:diff --git a/vrobbler/apps/music/models.py b/vrobbler/apps/music/models.pyindex c8ad474..c77753d 100644--- a/vrobbler/apps/music/models.py+++ b/vrobbler/apps/music/models.py@@ -600,8 +600,9 @@ class Track(ScrobblableMixin):     def __str__(self):         return f"{self.title} by {self.artist}" +    @property     def logdata_cls(self):-        return TrackLogData()+        return TrackLogData      @property     def primary_album(self):