Skip to content

Commit

Permalink
馃悰 Fix state stack merge on Google Assistant #1211
Browse files Browse the repository at this point in the history
  • Loading branch information
aswetlow committed Jun 7, 2022
1 parent a976cb9 commit 6c4539a
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 6c4539a

Please sign in to comment.