Merge pull request #8 from prefectAtEarth/fix/align_with_starting_two

fix(measuretime): align everything starting with a 2
pull/3515/head
Bernhard Salomon 2024-07-15 06:23:15 +02:00 committed by GitHub
commit 0b6a1a1c12
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -72,7 +72,7 @@
if (hour == 1) {
return lineEndFull - 5;
}
if (hour < 10 || hour > 20) {
if (hour < 10 || hour >= 20) {
return lineEndFull + 5;
}
return lineEndFull - 5;