Skip to content
This repository has been archived by the owner on Sep 18, 2023. It is now read-only.

Commit

Permalink
use animated url instead of static
Browse files Browse the repository at this point in the history
  • Loading branch information
iliazeus committed Jun 12, 2023
1 parent d0e2bb0 commit 9910ce1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ async function updateEmojiInContainer(): Promise<void> {
const img = document.createElement("img");

img.title = ":" + emoji.shortcode + ":";
img.src = emoji.static_url;
img.src = emoji.url;
img.dataset.shortcode = emoji.shortcode;

return img;
Expand Down

0 comments on commit 9910ce1

Please sign in to comment.