diff options
author | Joas Schilling <coding@schilljs.com> | 2016-11-16 12:09:41 +0100 |
---|---|---|
committer | Joas Schilling <coding@schilljs.com> | 2016-11-16 16:45:08 +0100 |
commit | bdaf334c5359b8e80397d5475f763bb826b274c0 (patch) | |
tree | 0c22f7d1258b799765c68f5302487eb5870fcae8 /lib | |
parent | 81e9836900139d2fda65fa833e735a62e637ab3b (diff) | |
download | nextcloud-server-bdaf334c5359b8e80397d5475f763bb826b274c0.tar.gz nextcloud-server-bdaf334c5359b8e80397d5475f763bb826b274c0.zip |
Move file sharing activities to the new API
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'lib')
-rw-r--r-- | lib/private/Activity/Manager.php | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/lib/private/Activity/Manager.php b/lib/private/Activity/Manager.php index 805124dc602..f102d2576fd 100644 --- a/lib/private/Activity/Manager.php +++ b/lib/private/Activity/Manager.php @@ -683,11 +683,6 @@ class Manager implements IManager { foreach ($this->getExtensions() as $c) { $result = $c->getNotificationTypes($languageCode); if (is_array($result)) { - if (class_exists('\OCA\Files_Sharing\Activity', false) && $c instanceof \OCA\Files_Sharing\Activity) { - $sharingNotificationTypes = $result; - continue; - } - $notificationTypes = array_merge($notificationTypes, $result); } } |