Skip to content

Commit a5887b8

Browse files
committed
Update Http.php
1 parent 12403de commit a5887b8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Discord/Http.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -525,10 +525,10 @@ protected function checkInteractionQueue(): void
525525
[$request, $deferred] = $this->interactionQueue->dequeue();
526526

527527
$this->executeRequest($request)->then(function ($result) use ($deferred) {
528-
$this->checkInteractionQueue();
528+
$this->checkQueue();
529529
$deferred->resolve($result);
530530
}, function ($e) use ($deferred) {
531-
$this->checkInteractionQueue();
531+
$this->checkQueue();
532532
$deferred->reject($e);
533533
});
534534
}

0 commit comments

Comments
 (0)