From 2c43516dc43e52b7a58211f938543bb411f0a0ec Mon Sep 17 00:00:00 2001 From: swee Date: Wed, 22 Jan 2025 20:21:06 -0800 Subject: [PATCH] Update modules/sqlite_local.py --- modules/sqlite_local.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/sqlite_local.py b/modules/sqlite_local.py index 1c1d015..50a5129 100644 --- a/modules/sqlite_local.py +++ b/modules/sqlite_local.py @@ -30,5 +30,5 @@ class broker: def nickserv_register(self, nick, password, email): hashed = self.fnet.encrypt(bytes(password, "UTF-8")).decode() db = self.conn.cursor() - db.execute("INSERT INTO nickserv values(?, 'iw', ?, ?, ?);", [nick, hashed, f"user/{nick}", email]) + db.execute("INSERT INTO nickserv values(?, 'iw', ?, ?);", [nick, hashed, email]) self.conn.commit() \ No newline at end of file