Merge pull request #13709 from friendica/MrPetovan-patch-1
Add support for string in $nodeinfo['protocols']
This commit is contained in:
commit
2643ca11e6
|
@ -1266,11 +1266,15 @@ class GServer
|
||||||
|
|
||||||
if (!empty($nodeinfo['protocols'])) {
|
if (!empty($nodeinfo['protocols'])) {
|
||||||
$protocols = [];
|
$protocols = [];
|
||||||
|
if (is_string($nodeinfo['protocols'])) {
|
||||||
|
$protocols[$nodeinfo['protocols']] = true;
|
||||||
|
} else {
|
||||||
foreach ($nodeinfo['protocols'] as $protocol) {
|
foreach ($nodeinfo['protocols'] as $protocol) {
|
||||||
if (is_string($protocol)) {
|
if (is_string($protocol)) {
|
||||||
$protocols[$protocol] = true;
|
$protocols[$protocol] = true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
if (!empty($protocols['dfrn'])) {
|
if (!empty($protocols['dfrn'])) {
|
||||||
$server['network'] = Protocol::DFRN;
|
$server['network'] = Protocol::DFRN;
|
||||||
|
@ -1367,11 +1371,15 @@ class GServer
|
||||||
|
|
||||||
if (!empty($nodeinfo['protocols'])) {
|
if (!empty($nodeinfo['protocols'])) {
|
||||||
$protocols = [];
|
$protocols = [];
|
||||||
|
if (is_string($nodeinfo['protocols'])) {
|
||||||
|
$protocols[$nodeinfo['protocols']] = true;
|
||||||
|
} else {
|
||||||
foreach ($nodeinfo['protocols'] as $protocol) {
|
foreach ($nodeinfo['protocols'] as $protocol) {
|
||||||
if (is_string($protocol)) {
|
if (is_string($protocol)) {
|
||||||
$protocols[$protocol] = true;
|
$protocols[$protocol] = true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
if (!empty($protocols['dfrn'])) {
|
if (!empty($protocols['dfrn'])) {
|
||||||
$server['network'] = Protocol::DFRN;
|
$server['network'] = Protocol::DFRN;
|
||||||
|
|
Loading…
Reference in New Issue
Block a user