Issue 12285: Show sharing notification only once

This commit is contained in:
Michael 2022-12-11 04:11:29 +00:00
parent 04945f9c98
commit 5e176b52a5
1 changed files with 6 additions and 0 deletions

View File

@ -440,6 +440,12 @@ class UserNotification
}
}
// Only check on posts by the user itself
$cdata = Contact::getPublicAndUserContactID($item['contact-id'], $item['uid']);
if (empty($cdata['user']) || ($item['author-id'] != $cdata['public'])) {
return false;
}
// Check if the contact posted or shared something directly
if (DBA::exists('contact', ['id' => $item['contact-id'], 'notify_new_posts' => true])) {
return true;