The handle (user@domain.tld) for Diaspora contacts must always be lowercase

This commit is contained in:
Michael Vogel 2016-08-23 07:48:48 +02:00
parent 9fa4a3bac6
commit 80bfcc7694
2 changed files with 7 additions and 4 deletions

View file

@ -788,6 +788,9 @@ class Probe {
isset($data["pubkey"]) AND ($hcard != "")) {
$data["network"] = NETWORK_DIASPORA;
// The Diaspora handle must always be lowercase
$data["addr"] = strtolower($data["addr"]);
// We have to overwrite the detected value for "notify" since Hubzilla doesn't send it
$data["notify"] = $data["baseurl"]."/receive/users/".$data["guid"];
$data["batch"] = $data["baseurl"]."/receive/public";