speed up friend requests and avoid parse errors by using hcard address instead of profile url

This commit is contained in:
Friendika 2011-09-07 22:49:58 -07:00
parent c8f6493008
commit fdd372a798
1 changed files with 1 additions and 1 deletions

View File

@ -471,7 +471,7 @@ function probe_url($url, $mode = PROBE_NORMAL) {
}
if(strlen($dfrn)) {
$ret = scrape_dfrn($dfrn);
$ret = scrape_dfrn(($hcard) ? $hcard : $dfrn);
if(is_array($ret) && x($ret,'dfrn-request')) {
$network = NETWORK_DFRN;
$request = $ret['dfrn-request'];