Merge pull request #13580 from annando/fetch-async

Follow requests are always processable
pull/13584/head
Tobias Diekershoff 2023-10-26 14:08:59 +02:00 zatwierdzone przez GitHub
commit 999c56a284
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 4AEE18F83AFDEB23
1 zmienionych plików z 4 dodań i 0 usunięć

Wyświetl plik

@ -268,6 +268,10 @@ class Queue
return false; return false;
} }
if (($entry['type'] == 'as:Follow') && ($entry['object-type'] == 'as:Note')) {
return true;
}
if (!empty($entry['object-id']) && Post::exists(['uri' => $entry['object-id']])) { if (!empty($entry['object-id']) && Post::exists(['uri' => $entry['object-id']])) {
// The object already exists, so processing can be done // The object already exists, so processing can be done
return true; return true;