aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Api/Playback/Progressive/BaseProgressiveStreamingService.cs
diff options
context:
space:
mode:
authorWilliam Lees <willwill56@gmail.com>2019-02-12 00:24:00 +1100
committerWilliam Lees <willwill56@gmail.com>2019-02-12 00:24:00 +1100
commitd8cb34dbbc3d4c86794836cb48116bebd885f0e5 (patch)
treea6472c3842ed9833f88781743a1ead9546ef5112 /MediaBrowser.Api/Playback/Progressive/BaseProgressiveStreamingService.cs
parenteb4b7051676b7493a57a99a821d5dd38bd9d4919 (diff)
add httpClient to appropriate constructors
Diffstat (limited to 'MediaBrowser.Api/Playback/Progressive/BaseProgressiveStreamingService.cs')
-rw-r--r--MediaBrowser.Api/Playback/Progressive/BaseProgressiveStreamingService.cs4
1 files changed, 3 insertions, 1 deletions
diff --git a/MediaBrowser.Api/Playback/Progressive/BaseProgressiveStreamingService.cs b/MediaBrowser.Api/Playback/Progressive/BaseProgressiveStreamingService.cs
index c197de173..7f4f8af0b 100644
--- a/MediaBrowser.Api/Playback/Progressive/BaseProgressiveStreamingService.cs
+++ b/MediaBrowser.Api/Playback/Progressive/BaseProgressiveStreamingService.cs
@@ -28,6 +28,7 @@ namespace MediaBrowser.Api.Playback.Progressive
protected readonly IEnvironmentInfo EnvironmentInfo;
public BaseProgressiveStreamingService(
+ IHttpClient httpClient,
IServerConfigurationManager serverConfig,
IUserManager userManager,
ILibraryManager libraryManager,
@@ -41,7 +42,8 @@ namespace MediaBrowser.Api.Playback.Progressive
IJsonSerializer jsonSerializer,
IAuthorizationContext authorizationContext,
IEnvironmentInfo environmentInfo)
- : base(serverConfig,
+ : base(httpClient,
+ serverConfig,
userManager,
libraryManager,
isoManager,