mirror of
https://github.com/ThatGuySam/doesitarm.git
synced 2026-05-15 06:35:20 -07:00
Detect Array instead of falsy
This commit is contained in:
parent
ba85f1cffe
commit
55e743a1e0
1 changed files with 1 additions and 1 deletions
|
|
@ -266,7 +266,7 @@ class BuildLists {
|
|||
}
|
||||
|
||||
// Add App Bundles
|
||||
if ( !!listEntry?.bundleIds ) {
|
||||
if ( Array.isArray( listEntry.bundleIds ) ) {
|
||||
listEntry.bundles = await this.getAppBundles( listEntry )
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue