Update Jellyfin.Api/Helpers/RequestHelpers.cs

Co-authored-by: Claus Vium <cvium@users.noreply.github.com>
This commit is contained in:
Cody Robibero
2020-10-11 06:15:55 -06:00
committed by GitHub
parent 2eafbc03e4
commit 163d6b0f1d

View File

@@ -196,7 +196,8 @@ namespace Jellyfin.Api.Helpers
}
return null;
}).Where(i => i.HasValue)
})
.Where(i => i.HasValue)
.Select(i => i!.Value)
.ToArray();
}