From 146326f4278f9e5806eb5e3e22d5f19ec3b8ad69 Mon Sep 17 00:00:00 2001 From: Michael Shamoon <4887959+shamoon@users.noreply.github.com> Date: Sat, 10 Dec 2022 22:26:35 -0800 Subject: [PATCH] fix plex proxy async bug --- src/widgets/plex/proxy.js | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/src/widgets/plex/proxy.js b/src/widgets/plex/proxy.js index dc8bb717f..135b2b081 100644 --- a/src/widgets/plex/proxy.js +++ b/src/widgets/plex/proxy.js @@ -93,7 +93,8 @@ export default async function plexProxyHandler(req, res) { movies = 0; tv = 0; logger.debug("Getting movie + tv counts from Plex API"); - await libraries.filter(l => ["movie", "show"].includes(l._attributes.type)).forEach(async (library) => { + const movieTVLibraries = libraries.filter(l => ["movie", "show"].includes(l._attributes.type)); + await Promise.all(movieTVLibraries.map(async (library) => { [status, apiData] = await fetchFromPlexAPI(`/library/sections/${library._attributes.key}/all`, widget); if (apiData && apiData.MediaContainer) { const size = parseInt(apiData.MediaContainer._attributes.size, 10); @@ -103,9 +104,9 @@ export default async function plexProxyHandler(req, res) { tv += size; } } - cache.put(`${tvCacheKey}.${service}`, tv, 1000 * 60 * 10); - cache.put(`${moviesCacheKey}.${service}`, movies, 1000 * 60 * 10); - }); + })); + cache.put(`${tvCacheKey}.${service}`, tv, 1000 * 60 * 10); + cache.put(`${moviesCacheKey}.${service}`, movies, 1000 * 60 * 10); } const data = {