Skip to content

Commit

Permalink
Fix redis incompatibility
Browse files Browse the repository at this point in the history
  • Loading branch information
adrianchifor authored Oct 31, 2020
1 parent 2a6557f commit 9843efe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ def api_v1_create():

if ('token' in request.form) and ('encryptedToken' in request.form):
db.set(key + "_encryptedToken", request.form['encryptedToken'])
db.set(key + "_" + request.form['token'], True)
db.set(key + "_" + request.form['token'], 'true')

if 'destructOption' in request.form:
destructOption = request.form['destructOption']
Expand Down

0 comments on commit 9843efe

Please sign in to comment.