* use latest authorization method with jellyfin api * temp pin dotnet sdk version to 10.0.102 * fix parameter name
10 lines
287 B
C#
10 lines
287 B
C#
using ErsatzTV.Core.Domain.MediaServer;
|
|
|
|
namespace ErsatzTV.Core.Jellyfin;
|
|
|
|
public record JellyfinConnectionParameters(string Address, string ApiKey, int MediaSourceId)
|
|
: MediaServerConnectionParameters
|
|
{
|
|
public string AuthorizationHeader => $"MediaBrowser Token={ApiKey}";
|
|
}
|