Skip to content

Commit

Permalink
Merge pull request #219 from AdTechMedia/stage
Browse files Browse the repository at this point in the history
Stage to master 2017-06-16
  • Loading branch information
mgoria authored Jun 16, 2017
2 parents f35f47f + 0a87731 commit d6def19
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion component/ads-blocking-losses/handler.py
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ def send_email_report(event, context):

# Fix mailchimp empty field exception
if event.get('full_name', '').strip():
merge_fields['FULL_NAME'] = event['full_name'],
merge_fields['FULL_NAME'] = event['full_name']

mailer.mailchimp_send(
conf=__config['parameters'],
Expand Down
2 changes: 1 addition & 1 deletion src/adtechmedia-website/frontend/js/calculator.js
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jQuery(function($) {
data: data,
success: function (responseContent) {
var confirmTokenQuery = 'confirm=' + responseContent.id;
window.location.href = '/calculator-result?' + confirmTokenQuery;
window.location.href = '/calculator-result/?' + confirmTokenQuery;
}
});
})
Expand Down

0 comments on commit d6def19

Please sign in to comment.