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

@@ -116,7 +116,7 @@ namespace MediaBrowser.MediaEncoding.Encoder
}
else
{
var mediaSources = await _mediaSourceManager.GetPlayackMediaSources(request.ItemId, cancellationToken).ConfigureAwait(false);
var mediaSources = await _mediaSourceManager.GetPlayackMediaSources(request.ItemId, false, cancellationToken).ConfigureAwait(false);
var mediaSource = string.IsNullOrEmpty(request.MediaSourceId)
? mediaSources.First()