Fix images "not loading" after manual identification

This commit is contained in:
Chris Tam
2021-09-08 17:20:11 -04:00
parent b96dbbf553
commit b0cd1f5e39
9 changed files with 36 additions and 31 deletions

View File

@@ -275,7 +275,7 @@ namespace MediaBrowser.Providers.Manager
item,
new RemoteImageQuery(provider.Name)
{
IncludeAllLanguages = false,
IncludeAllLanguages = true,
IncludeDisabledProviders = false,
},
cancellationToken).ConfigureAwait(false);
@@ -469,7 +469,7 @@ namespace MediaBrowser.Providers.Manager
CancellationToken cancellationToken)
{
var eligibleImages = images
.Where(i => i.Type == type && !(i.Width.HasValue && i.Width.Value < minWidth))
.Where(i => i.Type == type && i.Width >= minWidth)
.ToList();
if (EnableImageStub(item) && eligibleImages.Count > 0)