do not show obj_type ACTIVITY_OBJ_FILE under activity notifications and do not mark those read in /network

This commit is contained in:
git-marijus
2017-07-28 23:01:39 +02:00
parent f9b342c87d
commit 9717d4502f
2 changed files with 6 additions and 3 deletions

View File

@@ -400,9 +400,11 @@ class Ping extends \Zotlabs\Web\Controller {
$r = q("SELECT id, item_wall FROM item
WHERE item_unseen = 1 and uid = %d
$item_normal
and author_xchan != '%s'",
AND author_xchan != '%s'
AND obj_type != '%s'",
intval(local_channel()),
dbesc($ob_hash)
dbesc($ob_hash),
dbesc(ACTIVITY_OBJ_FILE)
);
if($r) {