fix bug where tx_fail string was too long

This commit is contained in:
lza_menace 2021-11-15 22:12:40 -08:00
parent 1a48e7db77
commit 5a3bf57a32
1 changed files with 1 additions and 1 deletions

View File

@ -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')