fix bug where tx_fail string was too long

master
lza_menace 3 years ago
parent 1a48e7db77
commit 5a3bf57a32

@ -208,7 +208,7 @@ def send():
msg = tx['message'].capitalize()
msg_lower = tx['message'].replace(' ', '_').lower()
flash(f'There was a problem sending the transaction: {msg}')
capture_event(user.id, f'tx_fail_{msg_lower}')
capture_event(user.id, f'tx_fail_{msg_lower[0:50]}')
else:
flash('Successfully sent transfer.')
capture_event(user.id, 'tx_success')

Loading…
Cancel
Save