diff options
author | Roeland Jago Douma <rullzer@users.noreply.github.com> | 2016-11-22 10:19:15 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-11-22 10:19:15 +0100 |
commit | 08ef7356f67ff0d6c306633d55cb63183296ed57 (patch) | |
tree | 87868e40e9d233bdee71bca0ad4e1ec3df48bb5f /lib | |
parent | 9c52f16dbbc95e32db33e0fb6ee7191c2a260e41 (diff) | |
parent | bdaf334c5359b8e80397d5475f763bb826b274c0 (diff) | |
download | nextcloud-server-08ef7356f67ff0d6c306633d55cb63183296ed57.tar.gz nextcloud-server-08ef7356f67ff0d6c306633d55cb63183296ed57.zip |
Merge pull request #2165 from nextcloud/sharing-activities-update
Move file sharing activities to the new API
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 fae07af37e4..a8810a3e16b 100644 --- a/lib/private/Activity/Manager.php +++ b/lib/private/Activity/Manager.php @@ -684,11 +684,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); } } |