aboutsummaryrefslogtreecommitdiff
path: root/routes/meetingpointProxy.js
diff options
context:
space:
mode:
Diffstat (limited to 'routes/meetingpointProxy.js')
-rw-r--r--routes/meetingpointProxy.js2
1 files changed, 2 insertions, 0 deletions
diff --git a/routes/meetingpointProxy.js b/routes/meetingpointProxy.js
index 1b70beb..cec74a8 100644
--- a/routes/meetingpointProxy.js
+++ b/routes/meetingpointProxy.js
@@ -2,11 +2,13 @@ var express = require('express')
var router = express.Router()
const Promise = require('bluebird')
const request = Promise.promisify(require('request'))
+const encoding = require('encoding')
/* GET home page. */
router.get('/:url', function (req, res, next) {
request(`http://www.meetingpointmco.nl/${req.params.url}`)
.then(raw => raw.body)
+ .then(page => encoding.convert(page, 'UTF-8', 'Windows-1252'))
.then(body => { res.end(body) })
.catch(next)
})