]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
Not only local groups should be added to group inbox notificiation table
authorMikael Nordfeldth <mmn@hethane.se>
Sat, 9 Jan 2016 14:14:38 +0000 (15:14 +0100)
committerMikael Nordfeldth <mmn@hethane.se>
Sat, 9 Jan 2016 14:14:38 +0000 (15:14 +0100)
classes/Notice.php

index 3fc93d4930db0f6a40279a5c27aed453123240ec..60c821ae5d2eeef191a9a57f3bfebb7e8841bc07 100644 (file)
@@ -1596,11 +1596,10 @@ class Notice extends Managed_DataObject
     function saveAttention(Profile $target, $reason=null)
     {
         if ($target->isGroup()) {
-            // FIXME: Make sure we check that users are in the groups they send to!
-            if ($target->getGroup()->isLocal()) {
-                // legacy notification method, will still be in use for quite a while I think
-                $this->addToGroupInbox($target->getGroup());
-            }
+            // FIXME: Make sure we check (for both local and remote) users are in the groups they send to!
+
+            // legacy notification method, will still be in use for quite a while I think
+            $this->addToGroupInbox($target->getGroup());
         } else {
             if ($target->hasBlocked($this->getProfile())) {
                 common_log(LOG_INFO, "Not saving reply to profile {$target->id} ($uri) from sender {$sender->id} because of a block.");