[mastodon-client] Fix global timeline

This commit is contained in:
Laura Hausmann 2023-07-07 19:23:47 +02:00
parent 5e6594d91d
commit 7b64cf9688
No known key found for this signature in database
GPG Key ID: D044E84C5BE01605
1 changed files with 8 additions and 7 deletions

View File

@ -45,7 +45,8 @@ export function apiTimelineMastodon(router: Router): void {
const client = getClient(BASE_URL, accessTokens); const client = getClient(BASE_URL, accessTokens);
try { try {
const query: any = ctx.query; const query: any = ctx.query;
const data = query.local const data =
query.local === "true"
? await client.getLocalTimeline( ? await client.getLocalTimeline(
convertTimelinesArgsId(argsToBools(limitToInt(query))), convertTimelinesArgsId(argsToBools(limitToInt(query))),
) )