mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2024-11-14 22:17:30 -07:00
Fix emoji urls being invalid
This commit is contained in:
parent
1fd147d054
commit
f0a30d6b4a
1 changed files with 2 additions and 2 deletions
|
@ -183,8 +183,8 @@ const getContact = async (
|
|||
last_status_at: user.lastActiveDate?.toISOString(),
|
||||
emojis: emojis ? user.emojis.filter(e => e in emojis).map(e => ({
|
||||
shortcode: e,
|
||||
static_url: `${config.url}/files/${emojis[e].publicUrl}`,
|
||||
url: `${config.url}/files/${emojis[e].publicUrl}`,
|
||||
static_url: emojis[e].publicUrl,
|
||||
url: emojis[e].publicUrl,
|
||||
visible_in_picker: true,
|
||||
})) : [],
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue