diff options
Diffstat (limited to 'bucky')
| -rw-r--r-- | bucky/app/federate.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bucky/app/federate.js b/bucky/app/federate.js index 6741a21..01b85a1 100644 --- a/bucky/app/federate.js +++ b/bucky/app/federate.js @@ -10,7 +10,7 @@ module.exports = { app.put('/raw/import/comment/', importRaw('comment', db.Comment), (req, res) => res.send({ status: 'ok' })) app.get('/raw/export/thread/:id', exportThread, (req, res) => res.send({ status: 'ok' })) - app.get('/raw/export/keyword/:id', exportKeyword, (req, res) => res.send({ status: 'ok' })) + app.get('/raw/export/keyword/:keyword', exportKeyword, (req, res) => res.send({ status: 'ok' })) function importRaw (type, model) { return (req, res, next) => { |
