Fix get provider id extension

pull/4789/head
crobibero 4 years ago
parent 4f6a585424
commit ca5f87c7eb

@ -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