]> git.mxchange.org Git - friendica.git/commitdiff
Wrong condition for home notifications
authorPhilipp Holzer <admin+github@philipp.info>
Sun, 27 Oct 2019 23:01:35 +0000 (00:01 +0100)
committerPhilipp Holzer <admin+github@philipp.info>
Sun, 27 Oct 2019 23:01:35 +0000 (00:01 +0100)
src/Model/Notify.php

index 8a60ee6c0494465806eff7b86659deb70a89c6d6..eef481ad8fb00b57d34c80547e613c542fad1ff6 100644 (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;