Skip to content

Commit

Permalink
Fix drone
Browse files Browse the repository at this point in the history
Signed-off-by: Git'Fellow <12234510+solracsf@users.noreply.github.com>
  • Loading branch information
solracsf authored Aug 30, 2023
1 parent 287479d commit 3cfb95e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/private/Share20/Manager.php
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit 3cfb95e

Please sign in to comment.