mirror of
https://github.com/mihonapp/mihon.git
synced 2024-11-21 20:47:03 -05:00
Small cleanup in WorkerInfoScreen
This commit is contained in:
parent
e183cbb231
commit
5aec8f8018
1 changed files with 9 additions and 12 deletions
|
@ -150,19 +150,16 @@ class WorkerInfoScreen : Screen() {
|
||||||
}
|
}
|
||||||
appendLine("State: ${workInfo.state}")
|
appendLine("State: ${workInfo.state}")
|
||||||
if (workInfo.state == WorkInfo.State.ENQUEUED) {
|
if (workInfo.state == WorkInfo.State.ENQUEUED) {
|
||||||
appendLine(
|
val timestamp = LocalDateTime.ofInstant(
|
||||||
"Next scheduled run: ${
|
Instant.ofEpochMilli(workInfo.nextScheduleTimeMillis),
|
||||||
LocalDateTime.ofInstant(
|
ZoneId.systemDefault(),
|
||||||
Instant.ofEpochMilli(workInfo.nextScheduleTimeMillis),
|
|
||||||
ZoneId.systemDefault(),
|
|
||||||
)
|
|
||||||
.toDateTimestampString(
|
|
||||||
UiPreferences.dateFormat(
|
|
||||||
Injekt.get<UiPreferences>().dateFormat().get(),
|
|
||||||
),
|
|
||||||
)
|
|
||||||
}",
|
|
||||||
)
|
)
|
||||||
|
.toDateTimestampString(
|
||||||
|
UiPreferences.dateFormat(
|
||||||
|
Injekt.get<UiPreferences>().dateFormat().get(),
|
||||||
|
),
|
||||||
|
)
|
||||||
|
appendLine("Next scheduled run: $timestamp",)
|
||||||
appendLine("Attempt #${workInfo.runAttemptCount + 1}")
|
appendLine("Attempt #${workInfo.runAttemptCount + 1}")
|
||||||
}
|
}
|
||||||
appendLine()
|
appendLine()
|
||||||
|
|
Loading…
Reference in a new issue