diff options
Diffstat (limited to 'src/bun_js.zig')
-rw-r--r-- | src/bun_js.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bun_js.zig b/src/bun_js.zig index d3d59a662..e9926f800 100644 --- a/src/bun_js.zig +++ b/src/bun_js.zig @@ -165,7 +165,7 @@ pub const Run = struct { { while (this.vm.eventLoop().tasks.count > 0 or this.vm.active_tasks > 0 or this.vm.uws_event_loop.?.active > 0) { this.vm.tick(); - this.vm.eventLoop().autoTick(); + this.vm.eventLoop().autoTickActive(); } if (this.vm.log.msgs.items.len > 0) { |