Skip to content
Snippets Groups Projects
Unverified Commit 8596983c authored by Alex Pott's avatar Alex Pott
Browse files

Issue #3150990 by cburschka: Updater::install() crashes on file transfer exceptions

parent 74bad3ce
No related branches found
No related tags found
No related merge requests found
......@@ -291,7 +291,7 @@ public function install(&$filetransfer, $overrides = []) {
return $this->postInstallTasks();
}
catch (FileTransferException $e) {
throw new UpdaterFileTransferException("File Transfer failed, reason: '" . strtr($e->getMessage(), $e->arguments)) . "'";
throw new UpdaterFileTransferException("File Transfer failed, reason: '" . strtr($e->getMessage(), $e->arguments) . "'");
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment