Skip to content

Commit

Permalink
🐛 Fix state stack merge on Google Assistant jovotech#1211
Browse files Browse the repository at this point in the history
  • Loading branch information
aswetlow authored and rubenaeg committed Jun 13, 2022
1 parent 1b3e47d commit a3ae6ea
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,9 @@ export class GoogleAssistantPlatform extends Platform<
if (typeof objValue === 'string' && typeof srcValue === 'string') {
return objValue ? objValue : srcValue;
}
if (Array.isArray(objValue) && Array.isArray(srcValue)) {
return srcValue;
}
},
);

Expand Down

0 comments on commit a3ae6ea

Please sign in to comment.