Fix get provider id extension

This commit is contained in:
crobibero 2020-12-14 07:20:16 -07:00
parent 4f6a585424
commit ca5f87c7eb
1 changed files with 1 additions and 1 deletions

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>