Skip to content

Commit

Permalink
fix: collect uniqueAcks by message id
Browse files Browse the repository at this point in the history
  • Loading branch information
marcus-pousette committed Dec 5, 2023
1 parent 087e38b commit 3e6976b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/transport/stream/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1544,7 +1544,7 @@ export abstract class DirectStream<
fastestNodesReached.set(targetHash, arr);
}
arr.push(ack);
uniqueAcks.add(targetHash + ack.seenCounter);
uniqueAcks.add(toBase64(ack.id) + ack.seenCounter);
}
}

Expand Down

0 comments on commit 3e6976b

Please sign in to comment.