From 54782f425509171f50e4eca7db1460457291f777 Mon Sep 17 00:00:00 2001 From: Humdinger Date: Sun, 23 Dec 2018 10:57:13 +0100 Subject: [PATCH] Mail: fixing unicode for szlig; MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The unicode for szlig ("ß") when filtering HTML tags was wrong, showing "ö" instead. Discovered by miqlas, pin-pointed by PulkoMandy. --- src/apps/mail/Content.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/apps/mail/Content.cpp b/src/apps/mail/Content.cpp index 017c9cab3c..bd6f3bf0c1 100644 --- a/src/apps/mail/Content.cpp +++ b/src/apps/mail/Content.cpp @@ -212,7 +212,7 @@ FilterHTMLTag(int32 &first, char **t, char *end) {"ograve;", 0x00f2}, {"ouml;", 0x00f6}, {"quot;", '"'}, - {"szlig;", 0x00f6}, + {"szlig;", 0x00df}, {"uacute;", 0x00fa}, {"ucirc;", 0x00fb}, {"ugrave;", 0x00f9},