diff --git a/app/controllers/api/databases.php b/app/controllers/api/databases.php index 9b36af240c..3e7d452491 100644 --- a/app/controllers/api/databases.php +++ b/app/controllers/api/databases.php @@ -3501,7 +3501,6 @@ App::patch('/v1/databases/:databaseId/collections/:collectionId/documents/:docum $message .= !is_null($exception->getDocumentId()) ? ' Id: ' . $exception->getDocumentId() : ''; $message .= !is_null($exception->getRelatedCollectionId()) ? ' Related collection: ' . $exception->getRelatedCollectionId() : ''; $message .= !is_null($exception->getRelatedDocumentId()) ? ' Related Id: ' . $exception->getRelatedDocumentId() : ''; - $message .= 'Try again with a different ID or use ID.unique() to generate a unique ID.'; throw new Exception(Exception::DOCUMENT_ALREADY_EXISTS, $message); } catch (StructureException $exception) { throw new Exception(Exception::DOCUMENT_INVALID_STRUCTURE, $exception->getMessage());