Skip to content

Commit

Permalink
fix(scheduler): remove unnecessary division by 4096
Browse files Browse the repository at this point in the history
  • Loading branch information
manast authored May 29, 2020
1 parent 183137a commit 4d25e95
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/classes/queue-scheduler.ts
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ export class QueueScheduler extends QueueBase {
let streamLastId = streamId;

if (nextTimestamp) {
this.nextTimestamp = nextTimestamp / 4096;
this.nextTimestamp = nextTimestamp;
}

while (!this.closing) {
Expand Down

0 comments on commit 4d25e95

Please sign in to comment.