don't apply path substitution when transcoding

This commit is contained in:
Luke Pulverenti
2015-03-11 23:37:25 -04:00
parent afeafd9444
commit fede730dc1
5 changed files with 13 additions and 11 deletions

View File

@@ -1710,7 +1710,7 @@ namespace MediaBrowser.Api.Playback
}
else
{
var mediaSources = await MediaSourceManager.GetPlayackMediaSources(request.Id, cancellationToken).ConfigureAwait(false);
var mediaSources = await MediaSourceManager.GetPlayackMediaSources(request.Id, false, cancellationToken).ConfigureAwait(false);
var mediaSource = string.IsNullOrEmpty(request.MediaSourceId)
? mediaSources.First()