Hide update notification if notification center is enabled

* then the notification center already contains this info

Signed-off-by: Morris Jobke <hey@morrisjobke.de>
pull/2803/head
Morris Jobke 10 years ago
parent e3dfe2cba7
commit d498d0982e
No known key found for this signature in database
GPG Key ID: 9CE5ED29E7FCD38A
  1. 3
      apps/updatenotification/appinfo/app.php

@ -33,7 +33,8 @@ if(\OC::$server->getConfig()->getSystemValue('updatechecker', true) === true) {
$userObject = \OC::$server->getUserSession()->getUser();
if($userObject !== null) {
if(\OC::$server->getGroupManager()->isAdmin($userObject->getUID())) {
if(\OC::$server->getGroupManager()->isAdmin($userObject->getUID()) &&
!\OC::$server->getAppManager()->isEnabledForUser('notifications')) {
if($updateChecker->getUpdateState() !== []) {
\OCP\Util::addScript('updatenotification', 'notification');
OC_Hook::connect('\OCP\Config', 'js', $updateChecker, 'getJavaScript');

Loading…
Cancel
Save