Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 7964c34d authored by Koji Arai's avatar Koji Arai
Browse files

Fixes issue 2145

Cannot show the emoji icon on Android 1.6 at least. Replaced all "< img" to "<img".
parent da90792f
Loading
Loading
Loading
Loading
+663 −665
Original line number Diff line number Diff line
@@ -2476,8 +2476,6 @@ public class LocalStore extends Store implements Serializable
                    switch (c)
                    {
                        // These emoji codepoints are generated by tools/make_emoji in the K-9 source tree
                        // The spaces between the < and the img are a hack to avoid triggering
                        // K-9's 'load images' button

                        case 0xE6F9: //docomo kissmark
                            buff.append("<img src=\"file:///android_asset/emoticons/kissmark.gif\" alt=\"kissmark\" />");
+2 −3
Original line number Diff line number Diff line
@@ -9,8 +9,7 @@ for my $carrier qw(docomo softbank kddi) {


    print "                        // These emoji codepoints are generated by tools/make_emoji in the K-9 source tree\n";
    print "                        // The spaces between the < and the img are a hack to avoid triggering \n";
    print "                        // K-9's 'load images' button\n\n";
    print "\n";
for my $codepoint (keys %{$emoji->{$carrier}}) {

    if (defined $codepoints{$codepoint}) {