Browse Source

Update AP Inbox, fix Move activity processing

Daniel Supernault 10 months ago
parent
commit
59645f683e
1 changed files with 2 additions and 2 deletions
  1. 2 2
      app/Util/ActivityPub/Inbox.php

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

@@ -1384,7 +1384,7 @@ class Inbox
                 Log::error($e);
             })
             ->onQueue('move')
-            ->dispatch()
-            ->delay(now()->addMinutes(random_int(5, 9)));
+            ->delay(now()->addMinutes(random_int(5, 9)))
+            ->dispatch();
     }
 }