Skip to content

Commit

Permalink
arraybuffer -> arraybufferview
Browse files Browse the repository at this point in the history
  • Loading branch information
michelle committed Mar 19, 2013
1 parent e043f95 commit 8f78f46
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/reliable.js
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ Reliable.prototype._handleMessage = function(msg) {

var n = msg[2];
var chunk = msg[3];
data.chunks[n] = chunk;
data.chunks[n] = new Uint8Array(chunk);

// If we get the chunk we're looking for, ACK for next missing.
// Otherwise, ACK the same N again.
Expand Down

0 comments on commit 8f78f46

Please sign in to comment.