fix account confirmation.

This commit is contained in:
v 2018-03-29 00:59:13 +02:00
parent c91ef55844
commit 449cc2588b

2
db.py
View file

@ -123,7 +123,7 @@ class DB(object):
return None # invalid token return None # invalid token
if 'passhash' in json.keys(): if 'passhash' in json.keys():
# create user # create user
self.execute("INSERT INTO user (passhash) VALUES(?, ?);", self.execute("INSERT INTO user (passhash) VALUES(?);",
(json['passhash'], )) (json['passhash'], ))
uid = self.cur.lastrowid uid = self.cur.lastrowid
else: else: