Skip to content

Commit

Permalink
added patience note for sharee
Browse files Browse the repository at this point in the history
note about incoming transfer taken out by background job

resolves #18272

Signed-off-by: Sascha Wiswedel <sascha.wiswedel@nextcloud.com>
  • Loading branch information
wiswedel authored and gary-kim committed Dec 16, 2019
1 parent 2486b17 commit 1dc90f0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions apps/files/lib/Notification/Notifier.php
Original file line number Diff line number Diff line change
Expand Up @@ -152,15 +152,15 @@ public function handleTransferownershipRequest(INotification $notification, stri
])
->setParsedSubject(str_replace('{user}', $param['sourceUser'], $l->t('Incoming ownership transfer from {user}')))
->setRichMessage(
$l->t('Do you want to accept {path}?'),
$l->t('Do you want to accept {path}? Note: The transfer process after accepting may take up to 1 hour.'),
[
'path' => [
'type' => 'highlight',
'id' => $param['targetUser'] . '::' . $param['nodeName'],
'name' => $param['nodeName'],
]
])
->setParsedMessage(str_replace('{path}', $param['nodeName'], $l->t('Do you want to accept {path}?')));
->setParsedMessage(str_replace('{path}', $param['nodeName'], $l->t('Do you want to accept {path}? Note: The transfer process after accepting may take up to 1 hour.')));

return $notification;
}
Expand Down

0 comments on commit 1dc90f0

Please sign in to comment.