aboutsummaryrefslogtreecommitdiffstats
path: root/main/src/cgeo/geocaching/utils/HtmlUtils.java
diff options
context:
space:
mode:
Diffstat (limited to 'main/src/cgeo/geocaching/utils/HtmlUtils.java')
-rw-r--r--main/src/cgeo/geocaching/utils/HtmlUtils.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/main/src/cgeo/geocaching/utils/HtmlUtils.java b/main/src/cgeo/geocaching/utils/HtmlUtils.java
index 30aa19b..07bf20f 100644
--- a/main/src/cgeo/geocaching/utils/HtmlUtils.java
+++ b/main/src/cgeo/geocaching/utils/HtmlUtils.java
@@ -67,7 +67,7 @@ public class HtmlUtils {
for (int i = 0; i < inputLen; i++) {
char c = input.charAt(i);
- if (c > 300) {
+ if (c > 127) {
output.append("&#");
output.append(Integer.toString(c));
output.append(';');