Android Auto: fix typo for cost string

This commit is contained in:
Johan von Forstner
2021-01-02 15:58:55 +01:00
committed by johan12345
parent 5d72be8e87
commit f74bb8e4a5

View File

@@ -135,7 +135,7 @@ data class Cost(
val parking =
if (freeparking) ctx.getString(R.string.free) else ctx.getString(R.string.paid)
return if (emoji) {
"$charging \uD83C\uDD7F · $parking"
"$charging · \uD83C\uDD7F $parking"
} else {
HtmlCompat.fromHtml(ctx.getString(R.string.cost_detail, charging, parking), 0)
}