Skip to content

Commit

Permalink
remove duplicated #
Browse files Browse the repository at this point in the history
  • Loading branch information
Kosta-Github committed Jul 7, 2015
1 parent 9ab4b84 commit abc23f2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ function adapter(uri, opts){
var msg = msgpack.encode([uid, packet, opts]);
if (opts.rooms) {
opts.rooms.forEach(function(room) {
var chnRoom = chn + '#' + room + '#';
var chnRoom = chn + room + '#';
pub.publish(chnRoom, msg);
});
} else {
Expand Down

1 comment on commit abc23f2

@objectiveSee
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Was this a bug fix, or just changing the naming scheme of rooms?

Please sign in to comment.