Skip to content

Commit

Permalink
Merge pull request DroidKaigi#353 from trashfeed/feature/fix_format_time
Browse files Browse the repository at this point in the history
Fix time format to 24-hour clock
  • Loading branch information
e10dokup committed Jan 10, 2019
2 parents 99b599b + b3c67fb commit c2c25ac
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions model/src/commonMain/kotlin/Session.kt
Original file line number Diff line number Diff line change
Expand Up @@ -58,9 +58,9 @@ sealed class Session(
append("")
}
append(" ")
append(startTime.format("hh:mm"))
append(startTime.format("HH:mm"))
append(" - ")
append(endTime.format("hh:mm"))
append(endTime.format("HH:mm"))
}

fun summary(lang: Lang) = buildString {
Expand Down

0 comments on commit c2c25ac

Please sign in to comment.