Fix QP retrieval
This commit is contained in:
parent
f7093cb029
commit
5f97260b7b
1 changed files with 2 additions and 2 deletions
|
@ -121,7 +121,7 @@ def report():
|
|||
def accept_comment():
|
||||
|
||||
try:
|
||||
id = request.args.get('id', '')
|
||||
id = request.args.get('comment', 0)
|
||||
secret = request.args.get('secret', '')
|
||||
|
||||
if secret != config.SECRET:
|
||||
|
@ -141,7 +141,7 @@ def accept_comment():
|
|||
def reject_comment():
|
||||
|
||||
try:
|
||||
id = request.args.get('id', '')
|
||||
id = request.args.get('comment', 0)
|
||||
secret = request.args.get('secret', '')
|
||||
|
||||
if secret != config.SECRET:
|
||||
|
|
Loading…
Add table
Reference in a new issue