Skip to content

Commit

Permalink
Merge pull request socketio#23 from chylli/fix-event-order
Browse files Browse the repository at this point in the history
fix the order of events
  • Loading branch information
nkzawa committed Nov 22, 2015
2 parents 913ddb8 + e8f660f commit f2a8255
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,10 @@ exports.types = [
'CONNECT',
'DISCONNECT',
'EVENT',
'BINARY_EVENT',
'ACK',
'BINARY_ACK',
'ERROR'
'ERROR',
'BINARY_EVENT',
'BINARY_ACK'
];

/**
Expand Down

0 comments on commit f2a8255

Please sign in to comment.