Skip to content

Commit fc1a804

Browse files
committedAug 3, 2019
UPDATE: Also translate Emoji in message title.
This is an incorporated contribution from pull-request #11.
1 parent 4d32f42 commit fc1a804

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/main/java/com/oasisfeng/nevo/decorators/wechat/MessagingBuilder.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ class MessagingBuilder {
9595
for (final StatusBarNotification each : archive) {
9696
final Notification notification = each.getNotification();
9797
final Bundle its_extras = notification.extras;
98-
final CharSequence its_title = its_extras.getCharSequence(Notification.EXTRA_TITLE);
98+
final CharSequence its_title = EmojiTranslator.translate(its_extras.getCharSequence(Notification.EXTRA_TITLE));
9999
if (! title.equals(its_title)) {
100100
Log.d(TAG, "Skip other conversation with the same key in archive: " + its_title); // ID reset by WeChat due to notification removal in previous evolving
101101
continue;

0 commit comments

Comments
 (0)