Merge pull request #4789 from crobibero/provider-search

Fix get provider id extension
This commit is contained in:
Claus Vium 2020-12-15 09:10:12 +01:00 committed by GitHub
commit bc8f1bdcac
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -49,7 +49,7 @@ namespace MediaBrowser.Model.Entities
}
instance.ProviderIds.TryGetValue(name, out string? id);
return id;
return string.IsNullOrEmpty(id) ? null : id;
}
/// <summary>