Merge pull request #12299 from annando/auto-reshare-fix
Check that an auto reshare is only done on the expected contact
This commit is contained in:
commit
7402bc9f50
|
@ -2271,6 +2271,11 @@ class Item
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
$cdata = Contact::getPublicAndUserContactID($item['author-id'], $item['uid']);
|
||||||
|
if (empty($cdata['user']) || ($cdata['user'] != $item['contact-id'])) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
if (!DBA::exists('contact', ['id' => $item['contact-id'], 'remote_self' => Contact::MIRROR_NATIVE_RESHARE])) {
|
if (!DBA::exists('contact', ['id' => $item['contact-id'], 'remote_self' => Contact::MIRROR_NATIVE_RESHARE])) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue