Continued:
- merged 2 if() into one with && - added TODO for possible rewrite (avoid "complex" code) Signed-off-by: Roland Häder <roland@mxchange.org>
This commit is contained in:
parent
bacb7b70f6
commit
debcdea82a
|
@ -391,10 +391,9 @@ function visible_activity($item) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (activity_match($item['verb'], ACTIVITY_FOLLOW) && $item['object-type'] === ACTIVITY_OBJ_NOTE) {
|
/// @TODO such things are unneccessary code-complexibilities and should be avoided
|
||||||
if (!(x($item, 'self') && ($item['uid'] == local_user()))) {
|
if (activity_match($item['verb'], ACTIVITY_FOLLOW) && $item['object-type'] === ACTIVITY_OBJ_NOTE && !(x($item, 'self') && ($item['uid'] == local_user()))) {
|
||||||
return false;
|
return false;
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
|
|
Loading…
Reference in a new issue