1
0
Fork 0

We have to check for "0" in "rel" as well

This commit is contained in:
Michael 2019-09-09 20:39:19 +00:00
commit 323285216b
2 changed files with 2 additions and 2 deletions

View file

@ -52,7 +52,7 @@ function notifications_post(App $a)
// The check for pending is in case the friendship was already approved
// and we just want to get rid of the pending contact
$condition = ['id' => $contact_id, 'uid' => local_user(),
'self' => false, 'pending' => true, 'rel' => Contact::FOLLOWER];
'self' => false, 'pending' => true, 'rel' => [0, Contact::FOLLOWER]];
if (DBA::exists('contact', $condition)) {
Contact::remove($contact_id);
}