send expected format of cloud id
Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
This commit is contained in:
parent
5d03b5c5dd
commit
9cfa8a6c44
|
@ -110,7 +110,8 @@ class CloudIdManager implements ICloudIdManager {
|
||||||
$host = $fixedRemote;
|
$host = $fixedRemote;
|
||||||
}
|
}
|
||||||
$id = $user . '@' . $remote;
|
$id = $user . '@' . $remote;
|
||||||
return new CloudId($id, $user, $fixedRemote, $this->getDisplayNameFromContact($id));
|
$displayName = $this->getDisplayNameFromContact($user . '@' . $host);
|
||||||
|
return new CloudId($id, $user, $fixedRemote, $displayName);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in New Issue