diff --git a/api/funkwhale_api/music/views.py b/api/funkwhale_api/music/views.py index 461ec50d5..20942a952 100644 --- a/api/funkwhale_api/music/views.py +++ b/api/funkwhale_api/music/views.py @@ -583,7 +583,7 @@ def handle_serve( try: f.download_audio_from_remote(actor=actor) except requests.exceptions.RequestException: - return Response({"detail": "Remove track is unavailable"}, status=503) + return Response({"detail": "Remote track is unavailable"}, status=503) data = f.get_audio_data() if data: f.duration = data["duration"]