mirror of
https://github.com/friendica/friendica
synced 2024-11-10 04:22:54 +00:00
pass zrl to dfrn_request as fallback
This commit is contained in:
parent
b3750ab54e
commit
ecc4962bd1
1 changed files with 5 additions and 0 deletions
|
@ -753,6 +753,11 @@ function dfrn_request_content(&$a) {
|
|||
$myaddr = ((x($_GET,'address')) ? $_GET['address'] : '');
|
||||
}
|
||||
|
||||
// last, try a zrl
|
||||
if(! strlen($myaddr))
|
||||
$myaddr = get_my_url();
|
||||
|
||||
|
||||
$target_addr = $a->profile['nickname'] . '@' . substr(z_root(), strpos(z_root(),'://') + 3 );
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue