From 37163b98788df8ae57d7c9087a5fafb7598a8a2c Mon Sep 17 00:00:00 2001 From: Daniel Brahneborg Date: Mon, 12 Aug 2019 13:04:08 +0200 Subject: [PATCH] ROUTE => route --- plugin/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugin/index.js b/plugin/index.js index 63297ac..13e9b65 100644 --- a/plugin/index.js +++ b/plugin/index.js @@ -12,7 +12,7 @@ router.post('/route', (req, res) => { const qe = req.body.qe let respbuf = '' if (qe.DESTADDR === '123') - respbuf = Buffer.from('ROUTE = out') + respbuf = Buffer.from('route = out') res.send(respbuf) })