mirror of
https://github.com/nextcloud/server.git
synced 2026-04-25 08:08:33 -04:00
Include previous execption for repair steps that don't exist
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
This commit is contained in:
parent
1933b3d8cb
commit
322f3238d7
1 changed files with 1 additions and 1 deletions
|
|
@ -149,7 +149,7 @@ class Repair implements IOutput {
|
|||
throw new \Exception("Repair step '$repairStep' can't be instantiated: " . $e->getMessage(), 0, $e);
|
||||
}
|
||||
} else {
|
||||
throw new \Exception("Repair step '$repairStep' is unknown");
|
||||
throw new \Exception("Repair step '$repairStep' is unknown", 0, $e);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue