mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-06 01:45:21 +02:00
upd: return empty history
This commit is contained in:
parent
aac4c8be60
commit
e32b03a048
1 changed files with 1 additions and 1 deletions
|
@ -57,7 +57,7 @@ export class ApiStatusMastodon {
|
|||
public async getHistory() {
|
||||
this.fastify.get<{ Params: { id: string } }>('/v1/statuses/:id/history', async (_request, reply) => {
|
||||
try {
|
||||
reply.code(401).send({ message: 'Not Implemented' });
|
||||
reply.send([]);
|
||||
} catch (e: any) {
|
||||
console.error(e);
|
||||
reply.code(401).send(e.response.data);
|
||||
|
|
Loading…
Reference in a new issue