mirror of
https://github.com/friendica/friendica
synced 2025-04-26 22:30:18 +00:00
bug #388 - notify_comment received after post deleted
This commit is contained in:
parent
724e1d15d0
commit
2170df897b
2 changed files with 2 additions and 2 deletions
|
@ -2479,7 +2479,7 @@ function local_delivery($importer,$data) {
|
|||
|
||||
if(!x($datarray['type']) || $datarray['type'] != 'activity') {
|
||||
|
||||
$myconv = q("SELECT `author-link`, `author-avatar`, `parent` FROM `item` WHERE `parent-uri` = '%s' AND `uid` = %d AND `parent` != 0 ",
|
||||
$myconv = q("SELECT `author-link`, `author-avatar`, `parent` FROM `item` WHERE `parent-uri` = '%s' AND `uid` = %d AND `parent` != 0 AND `deleted` = 0",
|
||||
dbesc($parent_uri),
|
||||
intval($importer['importer_uid'])
|
||||
);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue