fixed calculation of time until intervention pops up

This commit is contained in:
Thomas Hille
2017-03-08 15:15:52 +01:00
parent f1bf313280
commit 1eda266159

View File

@ -605,7 +605,7 @@ configureEditors: function () {
}
// if notifications are too close to each other, ensure some time differences between them
if (Math.abs(timeUntilAskQuestion - timeUntilBreak) < 5){
if (Math.abs(timeUntilAskQuestion - timeUntilBreak) < 5 * 1000 * 60){
timeUntilBreak = timeUntilBreak * 2;
}