From 6056ba6475e2d03e79019b5834832bbfc898a3ca Mon Sep 17 00:00:00 2001 From: Johannes Zellner Date: Sat, 27 Jul 2024 11:56:36 +0200 Subject: [PATCH] Another missing check for manifest.addons --- src/services.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/services.js b/src/services.js index a2c062a83..ddc605120 100644 --- a/src/services.js +++ b/src/services.js @@ -1792,7 +1792,7 @@ async function startRedis(existingInfra) { const allApps = await apps.list(); for (const app of allApps) { - if (!('redis' in app.manifest.addons)) continue; // app doesn't use the addon + if (!app.manifest.addons || !('redis' in app.manifest.addons)) continue; // app doesn't use the addon const redisName = `redis-${app.id}`;