Merge pull request #7205 from annando/fix-protocol

Fix "Undefined index: protocol"
This commit is contained in:
Hypolite Petovan
2019-05-29 00:36:36 -04:00
committed by GitHub

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),