mirror of
https://github.com/discordjs/discord.js.git
synced 2026-03-18 20:43:30 +01:00
Fix: "value" argument is out of bounds when writing timestamp header to packet
This commit is contained in:
@@ -199,8 +199,8 @@ class StreamDispatcher extends Writable {
|
|||||||
const next = FRAME_LENGTH + (this.count * FRAME_LENGTH) - (Date.now() - this.startTime - this.pausedTime);
|
const next = FRAME_LENGTH + (this.count * FRAME_LENGTH) - (Date.now() - this.startTime - this.pausedTime);
|
||||||
setTimeout(done.bind(this), next);
|
setTimeout(done.bind(this), next);
|
||||||
}
|
}
|
||||||
if (this._sdata.sequence === (2 ** 16) - 1) this._sdata.sequence = -1;
|
if (this._sdata.sequence >= (2 ** 16) - 1) this._sdata.sequence = -1;
|
||||||
if (this._sdata.timestamp === (2 ** 32) - 1) this._sdata.timestamp = -TIMESTAMP_INC;
|
if (this._sdata.timestamp >= (2 ** 32) - 1) this._sdata.timestamp = -TIMESTAMP_INC;
|
||||||
this._sdata.sequence++;
|
this._sdata.sequence++;
|
||||||
this._sdata.timestamp += TIMESTAMP_INC;
|
this._sdata.timestamp += TIMESTAMP_INC;
|
||||||
this.count++;
|
this.count++;
|
||||||
|
|||||||
Reference in New Issue
Block a user