Merge pull request #54 from jambonz/feat/fix_getVoice_aws

fix get aws voice should not be limit in en-US
This commit is contained in:
Dave Horton
2024-01-25 09:39:36 -05:00
committed by GitHub
+1 -1
View File
@@ -97,7 +97,7 @@ const getAwsVoices = async(_client, logger, credentials) => {
secretAccessKey
}
});
const command = new DescribeVoicesCommand({LanguageCode: 'en-US'});
const command = new DescribeVoicesCommand({});
const response = await client.send(command);
return response;
} catch (err) {