From 8644b858b30c0352544d34b4d4aef83eb7192595 Mon Sep 17 00:00:00 2001 From: Dave Horton Date: Fri, 12 Aug 2022 13:16:48 +0200 Subject: [PATCH] bugfix: aws region was not being passed to aws tts or stt --- lib/utils/db-utils.js | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/utils/db-utils.js b/lib/utils/db-utils.js index d05e86eb..7eb36a7e 100644 --- a/lib/utils/db-utils.js +++ b/lib/utils/db-utils.js @@ -30,6 +30,7 @@ const speechMapper = (cred) => { const o = JSON.parse(decrypt(credential)); obj.access_key_id = o.access_key_id; obj.secret_access_key = o.secret_access_key; + obj.aws_region = o.aws_region; } else if ('microsoft' === obj.vendor) { const o = JSON.parse(decrypt(credential));