diff options
author | blizzz <blizzz@arthur-schiwon.de> | 2022-10-21 13:46:44 +0200 |
---|---|---|
committer | backportbot-nextcloud[bot] <backportbot-nextcloud[bot]@users.noreply.github.com> | 2022-10-21 16:58:13 +0000 |
commit | 611a6c675188f24bb3d158d8e13621d186456a98 (patch) | |
tree | c86e8eb37e6ab0ff5c47752e1b84a1783d870cff /lib | |
parent | 625d6d4d0cecce34a2b9c9a72ca3434f3bd88961 (diff) | |
download | nextcloud-server-611a6c675188f24bb3d158d8e13621d186456a98.tar.gz nextcloud-server-611a6c675188f24bb3d158d8e13621d186456a98.zip |
extended hint message
Co-authored-by: Simon L. <szaimen@e.mail.de>
Signed-off-by: blizzz <blizzz@arthur-schiwon.de>
Diffstat (limited to 'lib')
-rw-r--r-- | lib/private/Support/Subscription/Assertion.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/private/Support/Subscription/Assertion.php b/lib/private/Support/Subscription/Assertion.php index 9acd3f878c3..9b77e875944 100644 --- a/lib/private/Support/Subscription/Assertion.php +++ b/lib/private/Support/Subscription/Assertion.php @@ -49,7 +49,7 @@ class Assertion implements IAssertion { public function createUserIsLegit(): void { if ($this->registry->delegateIsHardUserLimitReached($this->notificationManager)) { $l = $this->l10nFactory->get('lib'); - throw new HintException($l->t('The user limit has been reached and the user was not created.')); + throw new HintException($l->t('The user limit has been reached and the user was not created. Check your notifications to learn more.')); } } } |