From 6c966f608b5c7f96c84cc599248f88d5a78fa333 Mon Sep 17 00:00:00 2001 From: John Livingston Date: Wed, 20 Sep 2023 10:29:18 +0200 Subject: [PATCH] Stronger password. --- server/lib/configuration/bot.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/lib/configuration/bot.ts b/server/lib/configuration/bot.ts index c98d670a..046a22c9 100644 --- a/server/lib/configuration/bot.ts +++ b/server/lib/configuration/bot.ts @@ -185,7 +185,7 @@ class BotConfiguration { type: 'client', connection: { username: 'moderator', - password: Math.random().toString(36).slice(2, 12), + password: Math.random().toString(36).slice(2, 12) + Math.random().toString(36).slice(2, 12), domain: this.botsDomain, // Note: using localhost, and not currentProsody.host, because it does not always resolve correctly service: 'xmpp://localhost:' + port