aboutsummaryrefslogtreecommitdiff
path: root/Jellyfin.Api/Controllers/AudioController.cs
diff options
context:
space:
mode:
authorcrobibero <cody@robibe.ro>2020-08-10 07:53:32 -0600
committercrobibero <cody@robibe.ro>2020-08-10 07:53:32 -0600
commitc5e9cf15f6476d96eadc1d32e38687c3a5a98a17 (patch)
tree245eff1b61c7705274762c98ec857f757e3fda47 /Jellyfin.Api/Controllers/AudioController.cs
parent460c3dd35166c9a48db83db62a3f0a8742956408 (diff)
Use proper IHttpContextAccessor
Diffstat (limited to 'Jellyfin.Api/Controllers/AudioController.cs')
-rw-r--r--Jellyfin.Api/Controllers/AudioController.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Jellyfin.Api/Controllers/AudioController.cs b/Jellyfin.Api/Controllers/AudioController.cs
index 107db9571..d300b4891 100644
--- a/Jellyfin.Api/Controllers/AudioController.cs
+++ b/Jellyfin.Api/Controllers/AudioController.cs
@@ -192,7 +192,7 @@ namespace Jellyfin.Api.Controllers
StreamOptions = streamOptions
};
- return await _audioHelper.GetAudioStream(this, _transcodingJobType, streamingRequest).ConfigureAwait(false);
+ return await _audioHelper.GetAudioStream(_transcodingJobType, streamingRequest).ConfigureAwait(false);
}
}
}