mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-04-23 21:47:14 -04:00
Merge pull request #4789 from crobibero/provider-search
Fix get provider id extension
This commit is contained in:
commit
bc8f1bdcac
1 changed files with 1 additions and 1 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue