sessions / db3f9696fa7113e1f6cde98e447f9bef01ff1acc

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

This commit has no recorded session.

diff

show whitespace

commit db3f9696fa7113e1f6cde98e447f9bef01ff1accAuthor: Colin Powell <colin@unbl.ink>Date:   Fri Jun 19 14:05:46 2026 -0400    [importers] Fix smol bug in lastfm importerdiff --git a/PROJECT.org b/PROJECT.orgindex ee3a41b..d99bbe0 100644--- a/PROJECT.org+++ b/PROJECT.org@@ -88,7 +88,7 @@ fetching and simple saving. *** Metadata sources **** Scraper -* Backlog [0/22] :vrobbler:project:personal:+* Backlog [1/23] :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@@ -604,6 +604,10 @@ independent of the email flow it was originally creatdd for  ** TODO [#B] Is there way to create unique slugs for media instances :media_types: +** DONE [#B] Fix bug in lastfm import for new users :importers:lastfm:music:+:PROPERTIES:+:ID:       d034966d-0c7f-e512-4cf8-7329c9026b6f+:END: * Version 55.4 [1/1] ** DONE [#A] Tighten up the speed of startup and first request :perf: :PROPERTIES:diff --git a/vrobbler/apps/scrobbles/utils.py b/vrobbler/apps/scrobbles/utils.pyindex be5346f..11b2417 100644--- a/vrobbler/apps/scrobbles/utils.py+++ b/vrobbler/apps/scrobbles/utils.py@@ -154,8 +154,9 @@ def import_lastfm_for_all_users(restart=False):             last_processed = lfm_import.processed_finished         else:             logger.info(-                f"Not resuming failed LastFM import {lfm_import.id} for user {user_id}, use restart=True to restart"-                "No existing LastFM import, we should start a monthly parsing of lastFm for this user going back to 2002"+                "No existing LastFM import for user %s, "+                "starting a monthly parse going back to 2002",+                user_id,             )             continue