mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2024-11-22 01:47:39 -07:00
[mastodon-client] Fix ids of trending statuses not being converted
This commit is contained in:
parent
bd2df99489
commit
937a8c76c8
1 changed files with 4 additions and 2 deletions
|
@ -2,7 +2,7 @@ import Router from "@koa/router";
|
|||
import { MiscHelpers } from "@/server/api/mastodon/helpers/misc.js";
|
||||
import { argsToBools, limitToInt } from "@/server/api/mastodon/endpoints/timeline.js";
|
||||
import { Announcements } from "@/models/index.js";
|
||||
import { convertAnnouncementId, convertSuggestionIds } from "@/server/api/mastodon/converters.js";
|
||||
import { convertAnnouncementId, convertStatusIds, convertSuggestionIds } from "@/server/api/mastodon/converters.js";
|
||||
import { convertId, IdType } from "@/misc/convert-id.js";
|
||||
import { auth } from "@/server/api/mastodon/middleware/auth.js";
|
||||
import { MastoApiError } from "@/server/api/mastodon/middleware/catch-errors.js";
|
||||
|
@ -47,13 +47,15 @@ export function setupEndpointsMisc(router: Router): void {
|
|||
async (ctx) => {
|
||||
const args = limitToInt(ctx.query);
|
||||
ctx.body = await MiscHelpers.getTrendingHashtags(args.limit, args.offset);
|
||||
//FIXME: convert ids
|
||||
}
|
||||
);
|
||||
|
||||
router.get("/v1/trends/statuses",
|
||||
async (ctx) => {
|
||||
const args = limitToInt(ctx.query);
|
||||
ctx.body = await MiscHelpers.getTrendingStatuses(args.limit, args.offset);
|
||||
ctx.body = await MiscHelpers.getTrendingStatuses(args.limit, args.offset)
|
||||
.then(p => p.map(x => convertStatusIds(x)));
|
||||
}
|
||||
);
|
||||
|
||||
|
|
Loading…
Reference in a new issue