This commit is contained in:
Tobias Diekershoff 2012-08-14 12:38:06 +02:00
commit d3d2770f3a

View file

@ -394,7 +394,10 @@ function probe_url($url, $mode = PROBE_NORMAL) {
} }
if($link['@attributes']['rel'] === 'diaspora-public-key') { if($link['@attributes']['rel'] === 'diaspora-public-key') {
$diaspora_key = base64_decode(unamp($link['@attributes']['href'])); $diaspora_key = base64_decode(unamp($link['@attributes']['href']));
$pubkey = rsatopem($diaspora_key); if(strstr($diaspora_key,'RSA '))
$pubkey = rsatopem($diaspora_key);
else
$pubkey = $diaspora_key;
$diaspora = true; $diaspora = true;
} }
} }