mirror of
https://github.com/nextcloud/server.git
synced 2026-06-11 01:30:50 -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
3d58f6bd2b
commit
3b2122fc11
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