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

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;