From 67de07ad2a96792665b1189088d97144c28020cc Mon Sep 17 00:00:00 2001 From: JustMichael Date: Sun, 31 Dec 2023 22:31:14 +0000 Subject: [PATCH 1/3] fix: removed line which prevented frontend building --- admin/src/page/Requests.js | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/admin/src/page/Requests.js b/admin/src/page/Requests.js index 2ec717a5e..953b3cf49 100644 --- a/admin/src/page/Requests.js +++ b/admin/src/page/Requests.js @@ -350,11 +350,11 @@ class Requests extends React.Component { ? this.state[`edit_${type}`][server.uuid]?.path : false } - dataValue={ - this.state[`edit_${type}`][server.uuid]?.path - ? this.state[`edit_${type}`][server.uuid]?.path - : false - } + // dataValue={ + // this.state[`edit_${type}`][server.uuid]?.path + // ? this.state[`edit_${type}`][server.uuid]?.path + // : false + // } onChange={this.changeServerSettings} > From 0f1d6481a69a3e8a8432b7a149210486d122459d Mon Sep 17 00:00:00 2001 From: JustMichael Date: Sun, 31 Dec 2023 22:31:54 +0000 Subject: [PATCH 2/3] fix: changed url endpoint for plex tv for fetching users --- api/plex/libraryUpdate.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/plex/libraryUpdate.js b/api/plex/libraryUpdate.js index 92a7a9e40..f1713f9e8 100644 --- a/api/plex/libraryUpdate.js +++ b/api/plex/libraryUpdate.js @@ -771,7 +771,7 @@ class LibraryUpdate { } async getFriends() { - let url = `https://plex.tv/pms/friends/all?X-Plex-Token=${this.config.plexToken}`; + let url = `https://plex.tv/api/users?X-Plex-Token=${this.config.plexToken}`; try { let res = await axios.get(url); let dataParse = JSON.parse( From 12e9e642c1f0000b3677625feda48c97fba7756b Mon Sep 17 00:00:00 2001 From: JustMichael Date: Sun, 31 Dec 2023 22:39:48 +0000 Subject: [PATCH 3/3] chore: update package to 0.5.5 --- admin/package.json | 2 +- api/package.json | 2 +- frontend/package.json | 2 +- package.json | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/admin/package.json b/admin/package.json index bd09f28b5..82b68b6de 100644 --- a/admin/package.json +++ b/admin/package.json @@ -1,6 +1,6 @@ { "name": "petio-admin", - "version": "0.5.4-alpha", + "version": "0.5.5-alpha", "private": true, "homepage": ".", "dependencies": { diff --git a/api/package.json b/api/package.json index 6bade0e95..669a40e68 100644 --- a/api/package.json +++ b/api/package.json @@ -1,6 +1,6 @@ { "name": "petio-rest", - "version": "0.5.4-alpha", + "version": "0.5.5-alpha", "description": "Rest Api for Petio", "main": "index.js", "scripts": { diff --git a/frontend/package.json b/frontend/package.json index dffecf119..3cbc22ce8 100644 --- a/frontend/package.json +++ b/frontend/package.json @@ -1,6 +1,6 @@ { "name": "petio", - "version": "0.5.4-alpha", + "version": "0.5.5-alpha", "private": true, "homepage": ".", "dependencies": { diff --git a/package.json b/package.json index bda28394b..d65dd1d98 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "petio", - "version": "0.5.4-alpha", + "version": "0.5.5-alpha", "description": "Request Platform for Plex", "main": "petio.js", "author": "",