Skip to content

Commit ea765b8

Browse files
author
Alexander Goedde
committed
Merge pull request #208 from goeddea/master
updates the package.json for new release
2 parents fc04b20 + 36a1995 commit ea765b8

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

package/lib/transport/websocket.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ Factory.prototype.create = function () {
162162
} else {
163163
websocket = new global.WebSocket(self._options.url);
164164
}
165-
websocket.binaryType = 'arrayBuffer';
165+
websocket.binaryType = 'arraybuffer';
166166

167167
// older versions of Firefox prefix the WebSocket object
168168
} else if ("MozWebSocket" in global) {
@@ -228,4 +228,5 @@ Factory.prototype.create = function () {
228228
};
229229

230230

231+
231232
exports.Factory = Factory;

package/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "autobahn",
3-
"version": "0.10.0",
3+
"version": "0.10.1",
44
"description": "An implementation of The Web Application Messaging Protocol (WAMP).",
55
"main": "index.js",
66
"browser": {

0 commit comments

Comments
 (0)