diff options
author | Joas Schilling <coding@schilljs.com> | 2024-03-19 11:08:13 +0100 |
---|---|---|
committer | Joas Schilling <coding@schilljs.com> | 2024-03-19 11:08:13 +0100 |
commit | 84281ceecb88b2f2ad9e94ff641c5fe3e148e437 (patch) | |
tree | 8ad0a2c8ba3a3de13f4099745bd2751dd67f7e02 /apps/federatedfilesharing/lib | |
parent | 6101abbb2dd9408cdda666ec491751447dc1ab07 (diff) | |
download | nextcloud-server-84281ceecb88b2f2ad9e94ff641c5fe3e148e437.tar.gz nextcloud-server-84281ceecb88b2f2ad9e94ff641c5fe3e148e437.zip |
fix(federatedfilesharing): Use correct language file to render notification
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'apps/federatedfilesharing/lib')
-rw-r--r-- | apps/federatedfilesharing/lib/Notifier.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/federatedfilesharing/lib/Notifier.php b/apps/federatedfilesharing/lib/Notifier.php index ffbc3868a3a..ae74dd6419d 100644 --- a/apps/federatedfilesharing/lib/Notifier.php +++ b/apps/federatedfilesharing/lib/Notifier.php @@ -94,7 +94,7 @@ class Notifier implements INotifier { } // Read the language from the notification - $l = $this->factory->get('files_sharing', $languageCode); + $l = $this->factory->get('federatedfilesharing', $languageCode); switch ($notification->getSubject()) { // Deal with known subjects |