mirror of
https://github.com/friendica/friendica
synced 2024-11-10 08:22:57 +00:00
Wrong condition for home notifications
This commit is contained in:
parent
87ed05e2f6
commit
d9d71ea1e6
1 changed files with 1 additions and 1 deletions
|
@ -562,7 +562,7 @@ final class Notify extends BaseObject
|
|||
$ident = self::HOME;
|
||||
$notifies = [];
|
||||
|
||||
$condition = ['wall' => false, 'uid' => local_user()];
|
||||
$condition = ['wall' => true, 'uid' => local_user()];
|
||||
|
||||
if (!$seen) {
|
||||
$condition['unseen'] = true;
|
||||
|
|
Loading…
Reference in a new issue