diff --git a/android/app/src/main/java/com/fabledsword/thoughtsync/ui/Time.kt b/android/app/src/main/java/com/fabledsword/thoughtsync/ui/Time.kt index 45ea2c4..5f465e3 100644 --- a/android/app/src/main/java/com/fabledsword/thoughtsync/ui/Time.kt +++ b/android/app/src/main/java/com/fabledsword/thoughtsync/ui/Time.kt @@ -67,8 +67,7 @@ fun reminderLabel( } /** A stored instant as epoch milliseconds, or null if it will not parse. */ -fun epochMillis(raw: String): Long? = - runCatching { OffsetDateTime.parse(raw).toInstant().toEpochMilli() }.getOrNull() +fun epochMillis(raw: String): Long? = runCatching { OffsetDateTime.parse(raw).toInstant().toEpochMilli() }.getOrNull() /** Whether a stored reminder has already passed, for showing it as overdue. */ fun isPast(raw: String): Boolean {