feat: allow Jellyfin to set a playback URL different to the Jellyfin host specified during setup

This commit is contained in:
notfakie
2022-04-27 08:06:41 +12:00
parent 9e2f3f0639
commit 9fbc4074e4
6 changed files with 136 additions and 22 deletions

View File

@@ -39,6 +39,7 @@ export interface PlexSettings {
export interface JellyfinSettings {
name: string;
hostname?: string;
externalHostname?: string;
libraries: Library[];
serverId: string;
}
@@ -319,6 +320,7 @@ class Settings {
jellyfin: {
name: '',
hostname: '',
externalHostname: '',
libraries: [],
serverId: '',
},