From dacd6719571c2c1fbb7862f5bd99001ed9b2015b Mon Sep 17 00:00:00 2001 From: Ian Bicking Date: Thu, 19 Jan 2017 10:50:07 -0600 Subject: [PATCH] Make sure createdDate is updated with the save time, not just the time you hit the button --- addon/lib/shooter.js | 1 + 1 file changed, 1 insertion(+) diff --git a/addon/lib/shooter.js b/addon/lib/shooter.js index daf9f6a2b1..519a8aa43f 100644 --- a/addon/lib/shooter.js +++ b/addon/lib/shooter.js @@ -137,6 +137,7 @@ const ShotContext = Class({ }, takeShot: function () { + this.shot.createdDate = Date.now(); let finishTimer = startTimer({ variable: "take-shot" });