Skip to content

Commit

Permalink
fix delay configuration via array
Browse files Browse the repository at this point in the history
  • Loading branch information
nekufa committed Dec 24, 2024
1 parent 28bc413 commit 4ba5548
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Configuration.php
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ public function __construct(
if ($k == 'delayMode') {
$this->setDelay($this->delay, $v);
} elseif ($k == 'delay') {
$this->setDelay($k, $this->delayMode);
$this->setDelay($v, $this->delayMode);
} else {
$this->$k = $v;
}
Expand Down

0 comments on commit 4ba5548

Please sign in to comment.