exports.runQuery = function (matrixClient, room, userInput) { axios({ method: 'POST', url: `${config.fediverse.domain}/api/v1/statuses/${userInput}/unfavourite`, headers: { Authorization: `Bearer ${fediverse_auth.access_token}` }, }).then((response) => { matrixClient.sendHtmlNotice(room.roomId, '', `You have boo'd: ${response.data.account.acct}
${response.data.content}`); }) .catch((e) => { matrixClient.sendHtmlNotice(room.roomId, '', `${e}`); }); };