summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--news/newsbot.js8
1 files changed, 4 insertions, 4 deletions
diff --git a/news/newsbot.js b/news/newsbot.js
index 683bf39a..998482cd 100644
--- a/news/newsbot.js
+++ b/news/newsbot.js
@@ -105,15 +105,15 @@ function create_feedbot (nick, uri, channels) {
if (response.statusCode !== 200) {
return this.emit('error', new Error('Bad status code'))
}
- var output = res
- switch (res.headers['content-encoding']) {
+ var output = response
+ switch (response.headers['content-encoding']) {
case 'gzip':
output = zlib.createGunzip()
- res.pipe(output)
+ response.pipe(output)
break
case 'deflate':
output = zlib.createInflate()
- res.pipe(output)
+ response.pipe(output)
break
}
this.pipe(feedparser)