This commit is contained in:
Techywarrior 2013-03-28 22:52:21 -07:00
commit 7d4356b12a
3 changed files with 12 additions and 3 deletions

View file

@ -160,7 +160,7 @@ namespace MediaBrowser.Api.Playback.Hls
if (!string.IsNullOrEmpty(state.VideoRequest.Level))
{
args += " -level 3" + state.VideoRequest.Level;
args += " -level " + state.VideoRequest.Level;
}
if (state.SubtitleStream != null)

View file

@ -153,7 +153,7 @@ namespace MediaBrowser.Api.Playback.Progressive
if (!string.IsNullOrEmpty(state.VideoRequest.Level))
{
args += " -level 3" + state.VideoRequest.Level;
args += " -level " + state.VideoRequest.Level;
}
if (state.SubtitleStream != null)

View file

@ -774,7 +774,16 @@ namespace MediaBrowser.Controller.Entities
progress.Report((90 * percent) + 10);
});
await ((Folder)child).ValidateChildren(innerProgress, cancellationToken, recursive: recursive).ConfigureAwait(false);
await ((Folder) child).ValidateChildren(innerProgress, cancellationToken, recursive).ConfigureAwait(false);
}
else
{
percentages.TryUpdate(child.Id, 1, percentages[child.Id]);
var percent = percentages.Values.Sum();
percent /= list.Count;
progress.Report((90 * percent) + 10);
}
}));