Merge pull request #4789 from crobibero/provider-search

Fix get provider id extension
pull/4807/head
Claus Vium 4 years ago committed by GitHub
commit bc8f1bdcac
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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

Loading…
Cancel
Save