From a857b628b5a6d9e4e6e5d0f0192ab6f657afaffb Mon Sep 17 00:00:00 2001 From: tv Date: Mon, 17 Mar 2014 01:01:22 +0100 Subject: newsbot.js: s/res/response/ --- news/newsbot.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'news') 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) -- cgit v1.2.3