mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-07-01 20:02:52 +01:00
Fix images "not loading" after manual identification
This commit is contained in:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user