diff --git a/platforms/platform-googleassistant/src/GoogleAssistantPlatform.ts b/platforms/platform-googleassistant/src/GoogleAssistantPlatform.ts index 06d881b67c..3f0fdba1b3 100644 --- a/platforms/platform-googleassistant/src/GoogleAssistantPlatform.ts +++ b/platforms/platform-googleassistant/src/GoogleAssistantPlatform.ts @@ -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; + } }, );