added keyframe setting

This commit is contained in:
Luke Pulverenti
2015-08-28 13:39:52 -04:00
parent 31e36a56e7
commit 9a0462c868
3 changed files with 39 additions and 27 deletions

View File

@@ -189,7 +189,7 @@ namespace MediaBrowser.Providers.Manager
var results = await Task.WhenAll(tasks).ConfigureAwait(false);
var images = results.SelectMany(i => i);
var images = results.SelectMany(i => i.ToList());
return images;
}