Fix floating point error for poll expiry
ci/woodpecker/pr/woodpecker Pipeline was successful Details

Previous code multiply with 0.001 before multiplication which leads to a
floating point error.  By changing it to division by 1000 after
multiplication this is avoided.
This commit is contained in:
Ngô Ngọc Đức Huy 2023-03-24 20:44:29 +07:00
parent 7e1b1e79f4
commit 47fc082fb9
Signed by untrusted user: xarvos
GPG Key ID: 904AF1C7CDF695C3
1 changed files with 3 additions and 3 deletions

View File

@ -103,9 +103,9 @@ export default {
convertExpiryFromUnit (unit, amount) {
// Note: we want seconds and not milliseconds
switch (unit) {
case 'minutes': return 0.001 * amount * DateUtils.MINUTE
case 'hours': return 0.001 * amount * DateUtils.HOUR
case 'days': return 0.001 * amount * DateUtils.DAY
case 'minutes': return amount * DateUtils.MINUTE / 1000
case 'hours': return amount * DateUtils.HOUR / 1000
case 'days': return amount * DateUtils.DAY / 1000
}
},
expiryAmountChange () {