From 55e743a1e0dff927ad68839dba4e957a416cb98d Mon Sep 17 00:00:00 2001 From: Sam Carlton Date: Tue, 26 Apr 2022 20:02:19 -0500 Subject: [PATCH] Detect Array instead of falsy --- build-lists.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-lists.js b/build-lists.js index 43f15c8..00b8477 100644 --- a/build-lists.js +++ b/build-lists.js @@ -266,7 +266,7 @@ class BuildLists { } // Add App Bundles - if ( !!listEntry?.bundleIds ) { + if ( Array.isArray( listEntry.bundleIds ) ) { listEntry.bundles = await this.getAppBundles( listEntry ) }