Fix resume bug, stop trying to avoid resuming

Turns out trying to not resume in-progress Scrobbles is super painful.
Maybe I'll come up with a better idea later, but for now, I'd rather
just resurrect old paused scrobbles of past tracks, rather than
completely mess up all other aspects of scrobbling.
This commit is contained in:
2023-01-16 23:44:49 -05:00
parent fe53b68714
commit 0f562b7c58
5 changed files with 24 additions and 76 deletions

View File

@ -94,7 +94,6 @@ class Album(TimeStampedModel):
class Track(ScrobblableMixin):
RESUME_LIMIT = getattr(settings, 'MUSIC_RESUME_LIMIT', 60 * 60)
COMPLETION_PERCENT = getattr(settings, 'MUSIC_COMPLETION_PERCENT', 90)
class Opinion(models.IntegerChoices):