From 842378e812ff2053cbf418c1596a4ed157a1139b Mon Sep 17 00:00:00 2001 From: Colin Powell Date: Sun, 8 Jan 2023 02:50:54 -0500 Subject: [PATCH] Need to load JSON 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 007f85b..632ee4d 100644 --- a/vrobbler/apps/scrobbles/views.py +++ b/vrobbler/apps/scrobbles/views.py @@ -151,7 +151,7 @@ def jellyfin_websocket(request): @csrf_exempt @api_view(['POST']) def mopidy_websocket(request): - data_dict = request.data + data_dict = json.loads(request.data) # For making things easier to build new input processors if getattr(settings, "DUMP_REQUEST_DATA", False):