mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-04-21 09:34:44 +01:00
Addede VfType to DtoBaseItem
This commit is contained in:
parent
cc25bd579b
commit
0ff432ea4e
@@ -243,12 +243,14 @@ namespace MediaBrowser.Controller
|
||||
{
|
||||
var provider = MetadataProviders[i];
|
||||
|
||||
if (!provider.Supports(item))
|
||||
// Skip if internet providers are currently disabled
|
||||
if (provider.RequiresInternet && (!Configuration.EnableInternetProviders || !allowInternetProviders))
|
||||
{
|
||||
continue;
|
||||
}
|
||||
|
||||
if (provider.RequiresInternet && (!Configuration.EnableInternetProviders || !allowInternetProviders))
|
||||
// Skip if the provider doesn't support the current item
|
||||
if (!provider.Supports(item))
|
||||
{
|
||||
continue;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user