const lightEmoji = 'π½βΎπβοΈπ¨ποΈππ₯π»πβββΈοΈπ©οΈππππ§οΈππππππβ οΈπ¨οΈπππ¬πππ³οΈβͺβ¬β½β»οΈβ«οΈ';
const emojiFilename = (filename, match) => {
- const borderedEmoji = document.body.classList.contains('theme-mastodon-light') ? lightEmoji : darkEmoji;
+ const borderedEmoji = (document.body && document.body.classList.contains('theme-mastodon-light')) ? lightEmoji : darkEmoji;
return borderedEmoji.includes(match) ? (filename + '_border') : filename;
};