Skip to content

Commit

Permalink
fix: [ANDROAPP-5807] bug when parsing ValueType Time
Browse files Browse the repository at this point in the history
  • Loading branch information
xavimolloy committed Dec 20, 2023
1 parent 854b273 commit b94788f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ private fun formatStoredDateToUI(inputDateString: String, valueType: ValueType?)
}

ValueType.TIME -> {
val components = inputDateString.split(":/n")
val components = inputDateString.split(":")
if (components.size != 2) {
return inputDateString
}
Expand Down

0 comments on commit b94788f

Please sign in to comment.