From 1993faf8a4227acda3423d46cf2cf13b4d9861e7 Mon Sep 17 00:00:00 2001 From: yawnt Date: Thu, 5 Sep 2013 17:45:03 +0200 Subject: [PATCH] new error propagation - follows --- lib/caronte/streams/websocket.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/lib/caronte/streams/websocket.js b/lib/caronte/streams/websocket.js index 2d2dc69d6..3f073ab1f 100644 --- a/lib/caronte/streams/websocket.js +++ b/lib/caronte/streams/websocket.js @@ -3,12 +3,11 @@ var Duplex = require('stream').Duplex, http = require('http'), https = require('https'); -function WebsocketStream(options, res, instance) { +function WebsocketStream(options, res) { Duplex.call(this); this.options = options; this.res = res; - this.instance = intance; var self = this;