fix: add support for ssl when connecting to plex

fixes #275
This commit is contained in:
sct
2020-12-15 03:22:54 +00:00
parent f998873fc5
commit 3ba09d07eb
5 changed files with 165 additions and 110 deletions

View File

@@ -14,6 +14,7 @@ export interface PlexSettings {
machineId?: string;
ip: string;
port: number;
useSsl?: boolean;
libraries: Library[];
}
@@ -109,6 +110,7 @@ class Settings {
name: '',
ip: '127.0.0.1',
port: 32400,
useSsl: false,
libraries: [],
},
radarr: [],