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