diff options
author | Chris Schlaeger <chris@linux.com> | 2017-11-12 13:08:46 +0100 |
---|---|---|
committer | Chris Schlaeger <chris@linux.com> | 2017-11-12 13:08:46 +0100 |
commit | 7bd99806affa95ebfd35aed72d7d0d8b442e1383 (patch) | |
tree | e56d72e2bc8b0b9114c7176d71f8fd0db0b7aec2 | |
parent | 30f754df20e08dd8162cdf5b0df54fba037a719e (diff) | |
download | postrunner-7bd99806affa95ebfd35aed72d7d0d8b442e1383.zip |
New: Show activity start time instead of end time in summary
-rw-r--r-- | lib/postrunner/ActivitySummary.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/postrunner/ActivitySummary.rb b/lib/postrunner/ActivitySummary.rb index 95d776e..768bb31 100644 --- a/lib/postrunner/ActivitySummary.rb +++ b/lib/postrunner/ActivitySummary.rb @@ -77,7 +77,7 @@ module PostRunner t.body t.row([ 'Type:', @type ]) t.row([ 'Sub Type:', @sub_type ]) - t.row([ 'Date:', session.timestamp ]) + t.row([ 'Date:', session.start_time]) t.row([ 'Distance:', local_value(session, 'total_distance', '%.2f %s', { :metric => 'km', :statute => 'mi'}) ]) |