aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Api/Playback/BaseStreamingService.cs
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2015-01-17 14:30:23 -0500
committerLuke Pulverenti <luke.pulverenti@gmail.com>2015-01-17 14:30:23 -0500
commita8da86d059c0a9ba724bfcf11166d1b32406ca89 (patch)
treec6f45c97575ece03f36f3a653087fac334aec173 /MediaBrowser.Api/Playback/BaseStreamingService.cs
parent5f3c2f68b0a956ce28b8e48bf8fd20c89e44f5d9 (diff)
support api without /mediabrowser
Diffstat (limited to 'MediaBrowser.Api/Playback/BaseStreamingService.cs')
-rw-r--r--MediaBrowser.Api/Playback/BaseStreamingService.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/MediaBrowser.Api/Playback/BaseStreamingService.cs b/MediaBrowser.Api/Playback/BaseStreamingService.cs
index 84dd0c1e8..e70c1e573 100644
--- a/MediaBrowser.Api/Playback/BaseStreamingService.cs
+++ b/MediaBrowser.Api/Playback/BaseStreamingService.cs
@@ -857,7 +857,7 @@ namespace MediaBrowser.Api.Playback
{
if (SupportsThrottleWithStream)
{
- var url = "http://localhost:" + ServerConfigurationManager.Configuration.HttpServerPortNumber.ToString(UsCulture) + "/mediabrowser/videos/" + state.Request.Id + "/stream?static=true&Throttle=true&mediaSourceId=" + state.Request.MediaSourceId;
+ var url = "http://localhost:" + ServerConfigurationManager.Configuration.HttpServerPortNumber.ToString(UsCulture) + "/videos/" + state.Request.Id + "/stream?static=true&Throttle=true&mediaSourceId=" + state.Request.MediaSourceId;
url += "&transcodingJobId=" + transcodingJobId;