This commit is contained in:
Girish Ramakrishnan
2023-02-02 11:32:42 +01:00
parent e856681b3a
commit d4be2b54a2
+1 -1
View File
@@ -910,7 +910,7 @@ async function startTurn(existingInfra) {
let turnSecret = await blobs.getString(blobs.ADDON_TURN_SECRET);
if (!turnSecret) {
debug('startTurn: generting turn secret');
debug('startTurn: generating turn secret');
turnSecret = 'a' + crypto.randomBytes(15).toString('hex'); // prefix with a to ensure string starts with a letter
await blobs.setString(blobs.ADDON_TURN_SECRET, turnSecret);
}