diff --git a/src/core/controllers/StoreController.php b/src/core/controllers/StoreController.php index 0293fdf1f1a104782b2d907c96b34e0557599a48..0e0ec514c272a844dae68ea1de9b2be6d55c0c14 100644 --- a/src/core/controllers/StoreController.php +++ b/src/core/controllers/StoreController.php @@ -272,11 +272,13 @@ class StoreController 'value' => $destUser, 'type' => 'string' ]; - $aArgs['data'][] = [ - 'column' => 'typist', - 'value' => $destUser, - 'type' => 'string' - ]; + if (!$typistFound) { + $aArgs['data'][] = [ + 'column' => 'typist', + 'value' => $destUser, + 'type' => 'string' + ]; + } } if ($userPrimaryEntity) { $destinationFound = false;