From d811378f45adfbc5438f1902abcab7c4cd87fe28 Mon Sep 17 00:00:00 2001 From: Benn Oshrin Date: Tue, 10 Mar 2026 07:23:56 -0400 Subject: [PATCH] Additional fixes to Clone Command (CO-479) --- app/src/Command/CloneCommand.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/src/Command/CloneCommand.php b/app/src/Command/CloneCommand.php index 03afbf1ce..56d09ca00 100644 --- a/app/src/Command/CloneCommand.php +++ b/app/src/Command/CloneCommand.php @@ -407,7 +407,7 @@ protected function cloneEntity( if(method_exists($Table, "checkCloneDependencies")) { try { - $Table->checkCloneDependencies($original, $targetDataSource); + $Table->checkCloneDependencies($original, $targetCoId, $targetDataSource); } catch(\Exception $e) { $this->io->out($original->uuid . ": checkCloneDependencies failed, skipping " . $className . " " . $id . ": " . $e->getMessage());