no need to move $modrated check up

This commit is contained in:
Mario Vavti 2017-10-06 22:25:53 +02:00
parent 9bd30eb8bf
commit e7c8012794
2 changed files with 4 additions and 3 deletions

View File

@ -97,7 +97,6 @@ class Enotify {
$title = $i['title'];
$body = $i['body'];
$private = (($i['item_private']) || intval($i['item_obscured']));
$moderated = (($i['item_blocked'] == ITEM_MODERATED) ? true : false);
}
else {
$title = $params['item']['title'];
@ -131,7 +130,9 @@ class Enotify {
if ($params['type'] == NOTIFY_COMMENT) {
// logger("notification: params = " . print_r($params, true), LOGGER_DEBUG);
$itemlink = $params['link'];
$moderated = (($params['item']['item_blocked'] == ITEM_MODERATED) ? true : false);
$itemlink = $params['link'];
// ignore like/unlike activity on posts - they probably require a separate notification preference

View File

@ -73,4 +73,4 @@ class Moderate extends \Zotlabs\Web\Controller {
}
}
}