[scrobbles] Try tweaking completion time for tracks

This commit is contained in:
2024-03-06 20:30:00 -05:00
parent 42604b9e23
commit 1fb29304a3
2 changed files with 2 additions and 3 deletions

View File

@ -404,7 +404,7 @@ class Album(TimeStampedModel):
class Track(ScrobblableMixin):
COMPLETION_PERCENT = getattr(settings, "MUSIC_COMPLETION_PERCENT", 90)
COMPLETION_PERCENT = getattr(settings, "MUSIC_COMPLETION_PERCENT", 95)
class Opinion(models.IntegerChoices):
DOWN = -1, "Thumbs down"

View File

@ -15,8 +15,7 @@ PLAY_AGAIN_MEDIA = {
}
MEDIA_END_PADDING_SECONDS = {
"Video": 1800, # 30 min
"Track": 1, # 1 second
"Video": 3600, # 60 min
}
EXCLUDE_FROM_NOW_PLAYING = ("GeoLocation",)