ligh7hau5/commands/fediverse/boo.js
2024-09-29 20:53:07 +03:00

14 lines
479 B
JavaScript

exports.runQuery = function (roomId, event, userInput) {
axios({
method: 'POST',
url: `https://${fediverse.auth[event.getSender()].domain}/api/v1/statuses/${userInput}/unfavourite`,
headers: { Authorization: `Bearer ${fediverse.auth[event.getSender()].access_token}` },
})
.then(() => {
matrix.utils.addReact(event, '✅');
})
.catch((e) => {
matrix.utils.addReact(event, '❌');
matrix.utils.sendError(event, roomId, e);
});
};