From 0838f0de6612fff8595c7383e37c0c5ad3611140 Mon Sep 17 00:00:00 2001 From: Sander Roosendaal Date: Tue, 26 Mar 2019 11:55:11 +0100 Subject: [PATCH] fix #461 --- rowers/tasks.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rowers/tasks.py b/rowers/tasks.py index 01def2df..f64b6c54 100644 --- a/rowers/tasks.py +++ b/rowers/tasks.py @@ -1026,7 +1026,7 @@ def handle_sendemail_breakthrough(workoutid, useremail, d = { 'first_name':userfirstname, 'siteurl':siteurl, - 'workoutid':workoutid, + 'workoutid':encoder.encode_hex(workoutid), 'btvalues':tablevalues, } @@ -1071,7 +1071,7 @@ def handle_sendemail_hard(workoutid, useremail, d = { 'first_name':userfirstname, 'siteurl':siteurl, - 'workoutid':workoutid, + 'workoutid':encoder.encode_hex(workoutid), 'btvalues':tablevalues, }