[music] Fix jellyfin music scrobbling sort of

This commit is contained in:
2024-09-06 10:27:04 -04:00
parent 3a50a8b015
commit b5d194e74f
9 changed files with 151 additions and 40 deletions

View File

@ -77,12 +77,12 @@ class ScrobblableMixin(TimeStampedModel):
@property
def primary_image_url(self) -> str:
logger.warn(f"Not implemented yet")
logger.warning(f"Not implemented yet")
return ""
@property
def logdata_cls(self) -> None:
logger.warn("logdata_cls() not implemented yet")
logger.warning("logdata_cls() not implemented yet")
return None
@property
@ -90,11 +90,11 @@ class ScrobblableMixin(TimeStampedModel):
return ""
def fix_metadata(self) -> None:
logger.warn("fix_metadata() not implemented yet")
logger.warning("fix_metadata() not implemented yet")
@classmethod
def find_or_create(cls) -> None:
logger.warn("find_or_create() not implemented yet")
logger.warning("find_or_create() not implemented yet")
class LongPlayScrobblableMixin(ScrobblableMixin):