Skip to content

Commit

Permalink
Handle lowercase (y) for thumbs up
Browse files Browse the repository at this point in the history
  • Loading branch information
dusansimic authored Sep 3, 2023
1 parent bcb9833 commit c0b49cd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/browser/conversation-list.ts
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ function genStringFromNode(element: Element): string {
for (const image of images) {
emojiString = image.alt;
// Replace facebook's thumbs up with emoji
if (emojiString === '(Y)') {
if (emojiString === '(Y)' || emojiString === '(y)') {
emojiString = '👍';
}

Expand Down

0 comments on commit c0b49cd

Please sign in to comment.