Skip to content

Commit

Permalink
Fix Escaped @
Browse files Browse the repository at this point in the history
  • Loading branch information
Syer10 authored Sep 9, 2024
1 parent ba388e4 commit 84a47b7
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@ internal fun String.removeAndroidMirroringFormat(): String {
return replace("""\'""", "'")
.replace("""\"""", "\"")
.replace("""\?""", "?")
.replace("""\@""", "@")
}

internal fun String.convertXmlStringToAndroidLocalization(): String {
Expand Down

0 comments on commit 84a47b7

Please sign in to comment.