mirror of
https://iceshrimp.dev/crimekillz/trashposs
synced 2024-11-22 00:43:49 +01:00
[mastodon-client] Fix ids of trending statuses not being converted
This commit is contained in:
parent
bd2df99489
commit
937a8c76c8
@ -2,7 +2,7 @@ import Router from "@koa/router";
|
|||||||
import { MiscHelpers } from "@/server/api/mastodon/helpers/misc.js";
|
import { MiscHelpers } from "@/server/api/mastodon/helpers/misc.js";
|
||||||
import { argsToBools, limitToInt } from "@/server/api/mastodon/endpoints/timeline.js";
|
import { argsToBools, limitToInt } from "@/server/api/mastodon/endpoints/timeline.js";
|
||||||
import { Announcements } from "@/models/index.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 { convertId, IdType } from "@/misc/convert-id.js";
|
||||||
import { auth } from "@/server/api/mastodon/middleware/auth.js";
|
import { auth } from "@/server/api/mastodon/middleware/auth.js";
|
||||||
import { MastoApiError } from "@/server/api/mastodon/middleware/catch-errors.js";
|
import { MastoApiError } from "@/server/api/mastodon/middleware/catch-errors.js";
|
||||||
@ -47,13 +47,15 @@ export function setupEndpointsMisc(router: Router): void {
|
|||||||
async (ctx) => {
|
async (ctx) => {
|
||||||
const args = limitToInt(ctx.query);
|
const args = limitToInt(ctx.query);
|
||||||
ctx.body = await MiscHelpers.getTrendingHashtags(args.limit, args.offset);
|
ctx.body = await MiscHelpers.getTrendingHashtags(args.limit, args.offset);
|
||||||
|
//FIXME: convert ids
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
|
|
||||||
router.get("/v1/trends/statuses",
|
router.get("/v1/trends/statuses",
|
||||||
async (ctx) => {
|
async (ctx) => {
|
||||||
const args = limitToInt(ctx.query);
|
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 New Issue
Block a user