match against item verb
This commit is contained in:
parent
d826515ba8
commit
d2dcb93866
@ -138,7 +138,7 @@ class Enotify {
|
||||
|
||||
$action = 'commented on';
|
||||
|
||||
if(array_key_exists('item',$params) && (! visible_activity($params['item']))) {
|
||||
if(array_key_exists('item',$params) && in_array($params['item']['verb'], [ACTIVITY_LIKE, ACTIVITY_DISLIKE])) {
|
||||
|
||||
if(! $always_show_in_notices) {
|
||||
logger('notification: not a visible activity. Ignoring.');
|
||||
@ -146,10 +146,10 @@ class Enotify {
|
||||
return;
|
||||
}
|
||||
|
||||
if(activity_match($params['item']['verb'], ACTIVITY_LIKE))
|
||||
if(activity_match($params['verb'], ACTIVITY_LIKE))
|
||||
$action = 'liked';
|
||||
|
||||
if(activity_match($params['item']['verb'], ACTIVITY_DISLIKE))
|
||||
if(activity_match($params['verb'], ACTIVITY_DISLIKE))
|
||||
$action = 'disliked';
|
||||
|
||||
}
|
||||
|
Reference in New Issue
Block a user