Merge pull request #7780 from nupplaphil/bug/7776_home_not

Wrong condition for home notifications
This commit is contained in:
Michael Vogel 2019-10-28 00:48:28 +01:00 committed by GitHub
commit aa94d27e6e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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;