Skip to content
Snippets Groups Projects
Verified Commit 171ba6f4 authored by Mar0xy's avatar Mar0xy
Browse files

chore: change style of getStatusTrends

parent 0a9ca195
No related branches found
No related tags found
No related merge requests found
......@@ -47,8 +47,7 @@ export class ApiSearchMastodon {
public async getStatusTrends() {
try {
let map;
await fetch(`${this.BASE_URL}/api/notes/featured`,
const data = await fetch(`${this.BASE_URL}/api/notes/featured`,
{
method: 'POST',
headers: {
......@@ -58,10 +57,8 @@ export class ApiSearchMastodon {
body: JSON.stringify({}),
})
.then(res => res.json())
.then((data) => {
map = data.map((status: any) => this.mastoConverter.convertStatus(status));
});
return map;
.then(data => data.map((status: any) => this.mastoConverter.convertStatus(status)));
return data;
} catch (e: any) {
console.error(e);
return [];
......@@ -82,7 +79,7 @@ export class ApiSearchMastodon {
return Promise.all(data.map(async (suggestion: any) => { suggestion.account = await this.mastoConverter.convertAccount(suggestion.account); return suggestion; }));
} catch (e: any) {
console.error(e);
return e.response.data;
return [];
}
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment