From 2d235c057728938e085b79907876c6b4fac1c145 Mon Sep 17 00:00:00 2001 From: Colin Powell Date: Mon, 17 Nov 2025 21:45:17 -0500 Subject: [PATCH] [scrobbles] Fix missing note error --- vrobbler/apps/scrobbles/views.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vrobbler/apps/scrobbles/views.py b/vrobbler/apps/scrobbles/views.py index 87cf16d..de6cd54 100644 --- a/vrobbler/apps/scrobbles/views.py +++ b/vrobbler/apps/scrobbles/views.py @@ -952,7 +952,7 @@ class ScrobbleDetailView(DetailView): if isinstance(initial_notes, list) and len(initial_notes) > 0 and isinstance(initial_notes[0], dict): notes_str = note_list_to_str(notes) else: - notes_str = "\n".join(initial_notes) + notes_str = "\n".join(initial_notes) if initial_notes else "" notes_str_fixed = notes_str.encode("utf-8").decode( "unicode_escape"