mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-10 05:43:09 +02:00
upd: return empty tags on featured_tags call
This commit is contained in:
parent
871407ce53
commit
c2d1564851
1 changed files with 8 additions and 4 deletions
|
@ -931,10 +931,14 @@ export default class Misskey implements MegalodonInterface {
|
|||
// accounts/featured_tags
|
||||
// ======================================
|
||||
public async getFeaturedTags(): Promise<Response<Array<Entity.FeaturedTag>>> {
|
||||
return new Promise((_, reject) => {
|
||||
const err = new NoImplementedError('misskey does not support')
|
||||
reject(err)
|
||||
})
|
||||
const tags: Entity.FeaturedTag[] = [];
|
||||
const res: Response = {
|
||||
headers: undefined,
|
||||
statusText: "",
|
||||
status: 200,
|
||||
data: tags,
|
||||
};
|
||||
return new Promise((resolve) => resolve(res));
|
||||
}
|
||||
|
||||
public async createFeaturedTag(_name: string): Promise<Response<Entity.FeaturedTag>> {
|
||||
|
|
Loading…
Reference in a new issue