mirror of
https://github.com/owncast/owncast.git
synced 2024-10-10 19:16:02 +00:00
Fix relative img path
This commit is contained in:
parent
a2c7e8d59f
commit
b16a34eb3e
@ -26,7 +26,7 @@ emojiCollectionDirs.forEach(collection => {
|
||||
const emojiCollection = readdirSync(path.resolve(emojiDir, collection))
|
||||
.filter(f => f.toLowerCase() !== 'license.md')
|
||||
.map(emoji => {
|
||||
return { name: emoji, src: `/img/emoji/${collection}/${emoji}` };
|
||||
return { name: emoji, src: `img/emoji/${collection}/${emoji}` };
|
||||
});
|
||||
emojiCollections[collection] = { name: collection, images: emojiCollection };
|
||||
});
|
||||
|
Loading…
x
Reference in New Issue
Block a user