Merge pull request #7360 from annando/fix-fatal

Fix fatal error with incomplete contact data upon delivery
2022.09-rc
Philipp 2019-07-10 08:39:24 +02:00 zatwierdzone przez GitHub
commit 1b2b2259b1
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 4AEE18F83AFDEB23
1 zmienionych plików z 5 dodań i 0 usunięć

Wyświetl plik

@ -1455,6 +1455,11 @@ class DFRN
$dest_url = ($public_batch ? $contact["batch"] : $contact["notify"]);
if (empty($dest_url)) {
Logger::info('Empty destination', ['public' => $public_batch, 'contact' => $contact]);
return -24;
}
$content_type = ($public_batch ? "application/magic-envelope+xml" : "application/json");
$postResult = Network::post($dest_url, $envelope, ["Content-Type: ".$content_type]);