If you send Track data from the Jellyfin Webhook plugin, we'll do the right thing with it. Lots more to do to clean this up, but it also involved moduralizing the code for scrobbling so it's a little simpler to understand what's going on.
6 lines
85 B
Python
6 lines
85 B
Python
from django.apps import AppConfig
|
|
|
|
|
|
class MusicConfig(AppConfig):
|
|
name = 'music'
|