Compare commits
4 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 31888a85cb | |||
| 22d8b0787e | |||
| 8cc559752b | |||
| db3f9696fa |
12
PROJECT.org
12
PROJECT.org
@ -604,6 +604,18 @@ independent of the email flow it was originally creatdd for
|
|||||||
|
|
||||||
** TODO [#B] Is there way to create unique slugs for media instances :media_types:
|
** TODO [#B] Is there way to create unique slugs for media instances :media_types:
|
||||||
|
|
||||||
|
* Version 55.6 [1/1]
|
||||||
|
** DONE [#A] Figure out why historical Lastfm imports don't work :importers:lastfm:music:
|
||||||
|
:PROPERTIES:
|
||||||
|
:ID: 71b18c1b-de96-6d93-20fa-de2ec0df1288
|
||||||
|
:END:
|
||||||
|
|
||||||
|
* Version 55.5 [1/1]
|
||||||
|
** 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]
|
* Version 55.4 [1/1]
|
||||||
** DONE [#A] Tighten up the speed of startup and first request :perf:
|
** DONE [#A] Tighten up the speed of startup and first request :perf:
|
||||||
:PROPERTIES:
|
:PROPERTIES:
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
[tool.poetry]
|
[tool.poetry]
|
||||||
name = "vrobbler"
|
name = "vrobbler"
|
||||||
version = "55.4"
|
version = "55.6"
|
||||||
description = ""
|
description = ""
|
||||||
authors = ["Colin Powell <colin@unbl.ink>"]
|
authors = ["Colin Powell <colin@unbl.ink>"]
|
||||||
|
|
||||||
|
|||||||
@ -154,10 +154,11 @@ def import_lastfm_for_all_users(restart=False):
|
|||||||
last_processed = lfm_import.processed_finished
|
last_processed = lfm_import.processed_finished
|
||||||
else:
|
else:
|
||||||
logger.info(
|
logger.info(
|
||||||
f"Not resuming failed LastFM import {lfm_import.id} for user {user_id}, use restart=True to restart"
|
"No existing LastFM import for user %s, "
|
||||||
"No existing LastFM import, we should start a monthly parsing of lastFm for this user going back to 2002"
|
"starting a full parse",
|
||||||
|
user_id,
|
||||||
)
|
)
|
||||||
continue
|
last_processed = None
|
||||||
|
|
||||||
lfm_client = LastFM(user=get_user_model().objects.filter(id=user_id).first())
|
lfm_client = LastFM(user=get_user_model().objects.filter(id=user_id).first())
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user