Compare commits

..

No commits in common. "fc8e6669276a96ec8d61a747960dca45d2fc7d62" and "ef686799a8f0398a293fd029c9cbc74bb25f152b" have entirely different histories.

2 changed files with 1 additions and 4 deletions

View File

@ -174,7 +174,7 @@ def change_password():
global password global password
if request.method == 'POST': if request.method == 'POST':
password = request.form["password"] password = request.form["password"]
subprocess.Popen(["grafana-cli", "admin", "reset-admin-password", password]) subprocess.Popen([f"grafana-cli admin reset-admin-password {password}"])
with open("/app/MsRewards-Reborn/user_data/flask.json", "w") as inFile: with open("/app/MsRewards-Reborn/user_data/flask.json", "w") as inFile:
data = { data = {
"password": password, "password": password,

3
V6.py
View File

@ -836,9 +836,6 @@ def very_custom_start(json):
cred = g._cred[i] cred = g._cred[i]
g._mail = cred[0] g._mail = cred[0]
g._password = cred[1] g._password = cred[1]
if cred[2] != '':
g._otp = TOTP(cred[2])
start = False start = False
for j in ["unban", "tout", "pc", "mobile", "daily"]: for j in ["unban", "tout", "pc", "mobile", "daily"]:
try: try: