mirror of
https://github.com/friendica/friendica
synced 2024-11-10 05:02:58 +00:00
log the friend request - it's important
This commit is contained in:
parent
213f832443
commit
4ec706cfc7
1 changed files with 3 additions and 2 deletions
|
@ -802,6 +802,7 @@ function diaspora_share($me,$contact) {
|
|||
|
||||
post_url($contact['notify'] . '/',$slap);
|
||||
$return_code = $a->get_curl_code();
|
||||
logger('diaspora_send_share: returns: ' . $return_code);
|
||||
return $return_code;
|
||||
}
|
||||
|
||||
|
@ -890,7 +891,7 @@ function diaspora_send_followup($item,$owner,$contact) {
|
|||
|
||||
post_url($contact['notify'] . '/',$slap);
|
||||
$return_code = $a->get_curl_code();
|
||||
logger('diaspora_send_status: returns: ' . $return_code);
|
||||
logger('diaspora_send_followup: returns: ' . $return_code);
|
||||
return $return_code;
|
||||
|
||||
}
|
||||
|
@ -966,7 +967,7 @@ function diaspora_send_relay($item,$owner,$contact) {
|
|||
|
||||
post_url($contact['notify'] . '/',$slap);
|
||||
$return_code = $a->get_curl_code();
|
||||
logger('diaspora_send_status: returns: ' . $return_code);
|
||||
logger('diaspora_send_relay: returns: ' . $return_code);
|
||||
return $return_code;
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue