X-Git-Url: https://git.cworth.org/git?a=blobdiff_plain;f=turbot%2Finteraction.py;h=e0203894bfb8a6a9c76e916bf5668ad6c5d19f3f;hb=4f902f0849ca59389d2e9f08bc015e3eb9c63164;hp=392574d89f1d8c9405dd18fee541a8815aea720f;hpb=d124e7cc2c8d6b4e7cc0f86d452fef61081590b4;p=turbot diff --git a/turbot/interaction.py b/turbot/interaction.py index 392574d..e020389 100644 --- a/turbot/interaction.py +++ b/turbot/interaction.py @@ -146,7 +146,6 @@ def edit_puzzle_button(turb, payload): """Handler for the action of user pressing an edit_puzzle button""" action_id = payload['actions'][0]['action_id'] - response_url = payload['response_url'] trigger_id = payload['trigger_id'] (hunt_id, sort_key) = action_id.split('-', 1) @@ -154,9 +153,6 @@ def edit_puzzle_button(turb, payload): puzzle = find_puzzle_for_sort_key(turb, hunt_id, sort_key) if not puzzle: - requests.post(response_url, - json = {"text": "Error: Puzzle not found!"}, - headers = {"Content-type": "application/json"}) return bot_reply("Error: Puzzle not found.") return edit_puzzle(turb, puzzle, trigger_id) @@ -387,15 +383,11 @@ def edit_hunt_button(turb, payload): """Handler for the action of user pressing an edit_hunt button""" hunt_id = payload['actions'][0]['action_id'] - response_url = payload['response_url'] trigger_id = payload['trigger_id'] hunt = find_hunt_for_hunt_id(hunt_id) if not hunt: - requests.post(response_url, - json = {"text": "Error: Hunt not found!"}, - headers = {"Content-type": "application/json"}) return bot_reply("Error: Hunt not found.") return edit_hunt(turb, hunt, trigger_id)