Преглед изворни кода

Update Inbox, fix flag validation condition, allow profile reports

Daniel Supernault пре 1 година
родитељ
комит
402a4607c9
1 измењених фајлова са 1 додато и 1 уклоњено
  1. 1 1
      app/Util/ActivityPub/Inbox.php

+ 1 - 1
app/Util/ActivityPub/Inbox.php

@@ -1283,7 +1283,7 @@ class Inbox
             }
         }
 
-        if(!$accountId || !$objects->count()) {
+        if(!$accountId && !$objects->count()) {
             return;
         }