Skip to content
This repository has been archived by the owner on Nov 26, 2024. It is now read-only.

Commit

Permalink
Add emoji prefix to the liked toot notification
Browse files Browse the repository at this point in the history
  • Loading branch information
urmaul committed Feb 23, 2023
1 parent 9bb8674 commit 0c41500
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/render.ts
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ export function renderNotification(notification: Entity.Notification): string |
`🔔❤️ <b>${notification.account.display_name}</b> favourited your toot from ${notification.status.created_at}`,
`<p>🔗 ${unlink(notification.status.uri)}</p>` +
accountInfo(notification.account) +
'<p>' + (notification.status.plain_content || unlinkMentions(notification.status.content)) + '</p>'
'<p>💬 ' + (notification.status.plain_content || unlinkMentions(notification.status.content)) + '</p>'
);
} else {
logger.debug(`Unknown notification type ${notification.type}`, notification);
Expand Down

0 comments on commit 0c41500

Please sign in to comment.