upd: return empty list on empty custom emoji
This commit is contained in:
parent
5aa2b197da
commit
62b2c31655
|
@ -2178,7 +2178,7 @@ export default class Misskey implements MegalodonInterface {
|
||||||
public async getInstanceCustomEmojis(): Promise<Response<Array<Entity.Emoji>>> {
|
public async getInstanceCustomEmojis(): Promise<Response<Array<Entity.Emoji>>> {
|
||||||
return this.client
|
return this.client
|
||||||
.get<{ emojis: Array<MisskeyAPI.Entity.Emoji> }>('/api/emojis')
|
.get<{ emojis: Array<MisskeyAPI.Entity.Emoji> }>('/api/emojis')
|
||||||
.then(res => ({ ...res, data: res.data.emojis.map(e => MisskeyAPI.Converter.emoji(e)) }))
|
.then(res => ({ ...res, data: res.data.emojis && res.data.emojis.length > 0 ? res.data.emojis.map(e => MisskeyAPI.Converter.emoji(e)) : [] }))
|
||||||
}
|
}
|
||||||
|
|
||||||
// ======================================
|
// ======================================
|
||||||
|
|
Loading…
Reference in New Issue