Skip to content

Commit 3cb09d9

Browse files
committed
chore: bump version to v1.1.9
1 parent 4d7ba6f commit 3cb09d9

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

dist/lib/proxy/lib/proxy.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -997,7 +997,7 @@ Proxy.prototype._onWebSocketConnection = function (ctx, callback) {
997997
return fn(ctx, callback);
998998
}, callback);
999999
};
1000-
Proxy.prototype._onWebSocketFrame = function (ctx, type, fromServer, data, isBinary) {
1000+
Proxy.prototype._onWebSocketFrame = function (ctx, type, fromServer, data, flags) {
10011001
var self = this;
10021002
async.forEach(this.onWebSocketFrameHandlers.concat(ctx.onWebSocketFrameHandlers), function (fn, callback) {
10031003
return fn(ctx, type, fromServer, data, flags, function (err, newData, newFlags) {
@@ -1018,7 +1018,7 @@ Proxy.prototype._onWebSocketFrame = function (ctx, type, fromServer, data, isBin
10181018
if (destWebSocket.readyState === WebSocket.OPEN) {
10191019
switch (type) {
10201020
case "message":
1021-
destWebSocket.send(data, { binary: isBinary });
1021+
destWebSocket.send(data, { binary: flags });
10221022
break;
10231023
case "ping":
10241024
destWebSocket.ping(data, flags, false);

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@requestly/requestly-proxy",
3-
"version": "1.1.8",
3+
"version": "1.1.9",
44
"description": "Proxy that gives superpowers to all the Requestly clients",
55
"main": "dist/index.js",
66
"scripts": {

0 commit comments

Comments
 (0)