Skip to content

Commit

Permalink
v4.3.4
Browse files Browse the repository at this point in the history
  • Loading branch information
jondubois committed Feb 12, 2016
1 parent 5839576 commit 92d13ce
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 6 deletions.
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "socketcluster-client",
"main": "socketcluster.js",
"version": "4.3.3",
"version": "4.3.4",
"homepage": "https://github.com/SocketCluster/socketcluster-client",
"description": "SocketCluster JavaScript client",
"authors": [
Expand Down
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@ module.exports.destroy = function (options) {
return SCSocketCreator.destroy(options);
};

module.exports.version = '4.3.3';
module.exports.version = '4.3.4';
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "socketcluster-client",
"description": "SocketCluster JavaScript client",
"version": "4.3.3",
"version": "4.3.4",
"homepage": "http://socketcluster.io",
"contributors": [
{
Expand Down
3 changes: 2 additions & 1 deletion socketcluster.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ module.exports.destroy = function (options) {
return SCSocketCreator.destroy(options);
};

module.exports.version = '4.3.3';
module.exports.version = '4.3.4';

},{"./lib/scsocket":4,"./lib/scsocketcreator":5,"sc-emitter":12}],2:[function(require,module,exports){
(function (global){
Expand Down Expand Up @@ -860,6 +860,7 @@ SCSocket.prototype._trySubscribe = function (channel) {
}
}
);
channel.emit('subscribeRequest', channel.name);
SCEmitter.prototype.emit.call(this, 'subscribeRequest', channel.name);
}
};
Expand Down
4 changes: 2 additions & 2 deletions socketcluster.min.js

Large diffs are not rendered by default.

0 comments on commit 92d13ce

Please sign in to comment.