From: Philipp Holzer Date: Sun, 27 Oct 2019 23:01:35 +0000 (+0100) Subject: Wrong condition for home notifications X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=d9d71ea1e687a683f881b6d5f1ffc04f5f7ab048;p=friendica.git Wrong condition for home notifications --- diff --git a/src/Model/Notify.php b/src/Model/Notify.php index 8a60ee6c04..eef481ad8f 100644 --- a/src/Model/Notify.php +++ b/src/Model/Notify.php @@ -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;