fix: changing parameter name to use correct 'port' #276 (#277)

Co-authored-by: Ryan Boyles <Ryan.Boyles@ahstech.com>
This commit is contained in:
darknessgp
2020-12-14 18:14:11 -06:00
committed by GitHub
parent 78af1a3e6d
commit 6d08b10820
2 changed files with 2 additions and 2 deletions

View File

@@ -61,7 +61,7 @@ class PlexAPI {
this.plexClient = new NodePlexAPI({
hostname: settings.plex.ip,
post: settings.plex.port,
port: settings.plex.port,
token: plexToken,
authenticator: {
authenticate: (

View File

@@ -2,7 +2,7 @@ declare module 'plex-api' {
export default class PlexAPI {
constructor(intiialOptions: {
hostname: string;
post: number;
port: number;
token?: string;
authenticator: {
authenticate: (