mirror of https://github.com/jellyfin/jellyfin
Prefer filting by package id instead of name (#15197)
This commit is contained in:
parent
1520a697ad
commit
5691eee4f1
|
|
@ -223,15 +223,14 @@ namespace Emby.Server.Implementations.Updates
|
|||
Guid id = default,
|
||||
Version? specificVersion = null)
|
||||
{
|
||||
if (name is not null)
|
||||
{
|
||||
availablePackages = availablePackages.Where(x => x.Name.Equals(name, StringComparison.OrdinalIgnoreCase));
|
||||
}
|
||||
|
||||
if (!id.IsEmpty())
|
||||
{
|
||||
availablePackages = availablePackages.Where(x => x.Id.Equals(id));
|
||||
}
|
||||
else if (name is not null)
|
||||
{
|
||||
availablePackages = availablePackages.Where(x => x.Name.Equals(name, StringComparison.OrdinalIgnoreCase));
|
||||
}
|
||||
|
||||
if (specificVersion is not null)
|
||||
{
|
||||
|
|
|
|||
Loading…
Reference in New Issue