Skip to content

Commit

Permalink
Merge pull request #3774 from webcompat/issue/3773/1
Browse files Browse the repository at this point in the history
 Issue #3773 - Fix an issue with auth report not being saved to BQ
  • Loading branch information
ksy36 authored Jul 5, 2023
2 parents 63d5222 + 66a4796 commit 7eac581
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion tests/functional/reporting-issue-wizard-non-auth.js
Original file line number Diff line number Diff line change
Expand Up @@ -408,7 +408,7 @@ registerSuite("Reporting with wizard", {
// Click on "Continue without"
.click()
.end()
.sleep(500)
.sleep(1000)
.findByCssSelector(".step.active .description")
.getVisibleText()
.then(function (text) {
Expand Down
1 change: 1 addition & 0 deletions webcompat/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -153,6 +153,7 @@ def file_issue():
if session and (form_data is None):
abort(403)
json_response = report_issue(session['form'])
send_bq_report(session['form'], json_response.get('html_url'))
# Get rid of stashed form data
session.pop('form', None)
session['show_thanks'] = True
Expand Down

0 comments on commit 7eac581

Please sign in to comment.