Fix "Undefined index: protocol"

This commit is contained in:
Michael 2019-05-29 04:30:01 +00:00
parent e557457158
commit 824d35774b

View file

@ -144,7 +144,7 @@ class Diaspora
*/
private static function getRelayContact($server_url)
{
$fields = ['batch', 'id', 'name', 'network', 'archive', 'blocked'];
$fields = ['batch', 'id', 'name', 'network', 'protocol', 'archive', 'blocked'];
// Fetch the relay contact
$condition = ['uid' => 0, 'nurl' => Strings::normaliseLink($server_url),