[tracks] Use todays date for creating monthly playlists
All checks were successful
build / test (push) Successful in 2m3s

This commit is contained in:
2026-06-05 13:41:30 -04:00
parent 99c056adeb
commit 2536e330af
2 changed files with 6 additions and 5 deletions

View File

@ -659,7 +659,8 @@ def add_track_to_mopidy_monthly_playlist(scrobble):
if not mopidy_uri:
return
playlist_name = DateFormat(scrobble.timestamp).format(pattern)
now = now_user_timezone(profile)
playlist_name = DateFormat(now).format(pattern)
if not playlist_name:
return

View File

@ -35,6 +35,7 @@ from django.http import (
from django.shortcuts import get_object_or_404, redirect
from django.urls import reverse_lazy
from django.utils import timezone
from django.utils.dateformat import DateFormat
from django.views.decorators.csrf import csrf_exempt
from django.views.decorators.http import require_POST
from django.views.generic import DetailView, FormView, TemplateView
@ -1051,13 +1052,12 @@ def add_to_mopidy_monthly_playlist(request, uuid):
)
return redirect("scrobbles:detail", uuid=uuid)
now = now_user_timezone(profile)
playlist_name = DateFormat(now).format(pattern)
from scrobbles.utils import add_track_to_mopidy_monthly_playlist
add_track_to_mopidy_monthly_playlist(scrobble)
from django.utils.dateformat import DateFormat
playlist_name = DateFormat(scrobble.timestamp).format(pattern)
messages.add_message(
request,
messages.SUCCESS,