Reduce review delay after failure
John Smith

John Smith commited on 2021-347 21:21:36
Showing 1 changed files, with 1 additions and 1 deletions.


When a user forgets a response,
the delay was reset to 64 seconds.
That quantity is now 30 seconds,
matching the delay on a new prompt.
... ...
@@ -11,7 +11,7 @@ local function update(prompt, revtime, revsucc)
11 11
         prompt.delay = 2 * (revtime - prompt.time)
12 12
         prompt.succ = prompt.succ + 1
13 13
     else
14
-        prompt.delay = 64
14
+        prompt.delay = 30
15 15
         prompt.fail = prompt.fail + 1
16 16
     end
17 17
     prompt.time = revtime
18 18