diff --git a/src/Restorer/AbstractRestorer.php b/src/Restorer/AbstractRestorer.php index e8a253b8..e2eed6b7 100644 --- a/src/Restorer/AbstractRestorer.php +++ b/src/Restorer/AbstractRestorer.php @@ -35,7 +35,7 @@ public function __construct( protected readonly Configuration $config, ) { $this->binary = $config->getRestoreBinary() ?? $this->getDefaultBinary(); - $this->defaultOptions = $config->getRestoreBinary() ?? $this->getBuiltinDefaultOptions(); + $this->defaultOptions = $config->getRestoreOptions() ?? $this->getBuiltinDefaultOptions(); $this->logger = new NullLogger(); $this->output = new NullOutput(); $this->timeout = $config->getRestoreTimeout();