mirror of
https://codeberg.org/timelimit/timelimit-android.git
synced 2025-10-05 19:42:20 +02:00
fix off by one at the default rules
This commit is contained in:
parent
2f119dd3c1
commit
8b80ca9854
1 changed files with 2 additions and 2 deletions
|
@ -103,7 +103,7 @@ class DefaultCategories private constructor(private val context: Context) {
|
|||
dayMask = 1 + 2 + 4 + 8 + 16,
|
||||
maximumTimeInMillis = 0,
|
||||
startMinuteOfDay = 0,
|
||||
endMinuteOfDay = 6 * 60,
|
||||
endMinuteOfDay = 6 * 60 - 1,
|
||||
sessionPauseMilliseconds = 0,
|
||||
sessionDurationMilliseconds = 0
|
||||
)
|
||||
|
@ -132,7 +132,7 @@ class DefaultCategories private constructor(private val context: Context) {
|
|||
dayMask = 32 + 64,
|
||||
maximumTimeInMillis = 0,
|
||||
startMinuteOfDay = 0,
|
||||
endMinuteOfDay = 9 * 60,
|
||||
endMinuteOfDay = 9 * 60 - 1,
|
||||
sessionPauseMilliseconds = 0,
|
||||
sessionDurationMilliseconds = 0
|
||||
)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue