Skip to content

Commit

Permalink
Merge pull request #768 from Syer10/patch-4
Browse files Browse the repository at this point in the history
Fix Escaped @
  • Loading branch information
Alex009 authored Sep 22, 2024
2 parents ba388e4 + 84a47b7 commit 7630e49
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 7630e49

Please sign in to comment.