getting current

This commit is contained in:
luke-hagar-sp
2022-07-25 19:34:20 -05:00
parent 63a241390b
commit 1b9e319f7e
3 changed files with 12 additions and 12 deletions

12
package-lock.json generated
View File

@@ -13978,9 +13978,9 @@
} }
}, },
"node_modules/plex-api-oauth": { "node_modules/plex-api-oauth": {
"version": "1.0.124", "version": "1.0.125",
"resolved": "https://registry.npmjs.org/plex-api-oauth/-/plex-api-oauth-1.0.124.tgz", "resolved": "https://registry.npmjs.org/plex-api-oauth/-/plex-api-oauth-1.0.125.tgz",
"integrity": "sha512-Z66X0/HXnoaMBhpEnJOD/eJepRuqUwa2vX61dQr+Ino/8KGPi3WHeLDka4BRentOFoHBLgk31KbTWUFBILz6zA==", "integrity": "sha512-d4SXGeaRhlM1es40AxY+9buejBLmZzoRnwMXrnmwuusWezUNfFZgfdTA6nZq1rmtj4PIKixcMa6WO6KWW1Iasg==",
"dependencies": { "dependencies": {
"axios": "^0.27.2", "axios": "^0.27.2",
"plex-oauth": "^2.0.2", "plex-oauth": "^2.0.2",
@@ -28912,9 +28912,9 @@
"integrity": "sha512-Igl37++MSa+4H8LNP3Ene9GU0e1YypmXvFVNvVUwoAx44e74jbUlJXy4Q5rLSBisn0O2lBKdE6VkFIwrDl+UnQ==" "integrity": "sha512-Igl37++MSa+4H8LNP3Ene9GU0e1YypmXvFVNvVUwoAx44e74jbUlJXy4Q5rLSBisn0O2lBKdE6VkFIwrDl+UnQ=="
}, },
"plex-api-oauth": { "plex-api-oauth": {
"version": "1.0.124", "version": "1.0.125",
"resolved": "https://registry.npmjs.org/plex-api-oauth/-/plex-api-oauth-1.0.124.tgz", "resolved": "https://registry.npmjs.org/plex-api-oauth/-/plex-api-oauth-1.0.125.tgz",
"integrity": "sha512-Z66X0/HXnoaMBhpEnJOD/eJepRuqUwa2vX61dQr+Ino/8KGPi3WHeLDka4BRentOFoHBLgk31KbTWUFBILz6zA==", "integrity": "sha512-d4SXGeaRhlM1es40AxY+9buejBLmZzoRnwMXrnmwuusWezUNfFZgfdTA6nZq1rmtj4PIKixcMa6WO6KWW1Iasg==",
"requires": { "requires": {
"axios": "^0.27.2", "axios": "^0.27.2",
"plex-oauth": "^2.0.2", "plex-oauth": "^2.0.2",

View File

@@ -337,9 +337,9 @@ function App() {
await PlexSession.plexServers.forEach(async (server) => { await PlexSession.plexServers.forEach(async (server) => {
await PlexSession.GetPlexLibraries(server); await PlexSession.GetPlexLibraries(server);
}); });
await PlexSession.plexServers.forEach((server) => { await PlexSession.plexServers.forEach(async (server) => {
server.libraries.forEach((library) => { await server.libraries.forEach(async (library) => {
PlexSession.GetPlexLibraryContent(server, library); await PlexSession.GetPlexLibraryContent(server, library);
}); });
}); });
await PlexSession.SavePlexSession(); await PlexSession.SavePlexSession();

View File

@@ -7665,9 +7665,9 @@
"version" "1.1.0" "version" "1.1.0"
"plex-api-oauth@^1.0.4": "plex-api-oauth@^1.0.4":
"integrity" "sha512-Z66X0/HXnoaMBhpEnJOD/eJepRuqUwa2vX61dQr+Ino/8KGPi3WHeLDka4BRentOFoHBLgk31KbTWUFBILz6zA==" "integrity" "sha512-d4SXGeaRhlM1es40AxY+9buejBLmZzoRnwMXrnmwuusWezUNfFZgfdTA6nZq1rmtj4PIKixcMa6WO6KWW1Iasg=="
"resolved" "https://registry.npmjs.org/plex-api-oauth/-/plex-api-oauth-1.0.124.tgz" "resolved" "https://registry.npmjs.org/plex-api-oauth/-/plex-api-oauth-1.0.125.tgz"
"version" "1.0.124" "version" "1.0.125"
dependencies: dependencies:
"axios" "^0.27.2" "axios" "^0.27.2"
"plex-oauth" "^2.0.2" "plex-oauth" "^2.0.2"