From 3cfb95eb47224374b37514edc88443a548b0d004 Mon Sep 17 00:00:00 2001 From: Git'Fellow <12234510+solracsf@users.noreply.github.com> Date: Wed, 30 Aug 2023 23:22:25 +0200 Subject: [PATCH] Fix drone Signed-off-by: Git'Fellow <12234510+solracsf@users.noreply.github.com> --- lib/private/Share20/Manager.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/private/Share20/Manager.php b/lib/private/Share20/Manager.php index 84b5513c2acd0..29d5676e1cad3 100644 --- a/lib/private/Share20/Manager.php +++ b/lib/private/Share20/Manager.php @@ -1321,7 +1321,7 @@ public function moveShare(IShare $share, $recipientId) { if ($share->getShareType() === IShare::TYPE_GROUP) { $sharedWith = $this->groupManager->get($share->getSharedWith()); if (is_null($sharedWith)) { - $message_t = $this->l->t('Group %s does not exist', $share->getSharedWith()); + $message_t = $this->l->t('Group "%s" does not exist', [$share->getSharedWith()]); throw new \InvalidArgumentException($message_t); } $recipient = $this->userManager->get($recipientId);