From 6cf4971b2249c5cb92f73370a29c31bb3228d890 Mon Sep 17 00:00:00 2001 From: N Pex Date: Fri, 1 Jul 2022 08:34:59 +0000 Subject: [PATCH] Prefix random usernames with "weblite" --- src/plugins/utils.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/utils.js b/src/plugins/utils.js index cb9b67f..652ae68 100644 --- a/src/plugins/utils.js +++ b/src/plugins/utils.js @@ -390,7 +390,7 @@ class Util { /** Generate a random user name */ randomUser() { - return this.randomString( + return "weblite-" + this.randomString( 12, "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789" );