Better checking for CC'd replies

merge-requests/5/head
Terence Eden 2024-03-03 09:30:31 +00:00
rodzic 91ca65f9e8
commit 6d46fa45c6
1 zmienionych plików z 6 dodań i 2 usunięć

Wyświetl plik

@ -1319,7 +1319,11 @@ HTML;
}
// Check to see if the user has been specifically CC'd
if ( isset( $object["cc"] ) ) {
$reply = in_array( "https://{$server}/{$username}", $object["cc"] );
} else {
$reply = false;
}
// What sort of message is this?
"Create" == $type ? $verb = "wrote" : $verb = "updated";