From e47328e5727594c14953b9720851c7c232cd441b Mon Sep 17 00:00:00 2001 From: Colin Powell Date: Fri, 15 May 2026 12:38:59 -0400 Subject: [PATCH] [scrobbles] Fix circular dep problem in saving log data --- 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 293402f..51cc638 100644 --- a/vrobbler/apps/scrobbles/views.py +++ b/vrobbler/apps/scrobbles/views.py @@ -948,7 +948,7 @@ class ScrobbleDetailView(DetailView): original_value = (self.object.log or {}).get(field_name) data[field_name] = original_value - if data.get("with_people_ids", False): + if data.get("with_people_ids") is not None: data["with_people_ids"] = [p.id for p in data["with_people_ids"]] if data.get("platform_id", False):