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):