Skip to content
Snippets Groups Projects

Emoji double links

Merged vaartis requested to merge vaartis/admin-fe:emoji-double-links into master
1 file
+ 1
2
Compare changes
  • Side-by-side
  • Inline
+ 1
2
@@ -140,8 +140,7 @@ export async function updatePackFile(host, token, args) {
}
export function addressOfEmojiInPack(host, packName, name) {
// This needs http because hackney on the BE does not understand URLs with just "//"
return `http://${baseName(host)}/emoji/${packName}/${name}`
return `${baseName(host)}/emoji/${packName}/${name}`
}
const authHeaders = (token) => token ? { 'Authorization': `Bearer ${getToken()}` } : {}
Loading