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