mirror of
https://github.com/friendica/friendica
synced 2024-11-19 14:23:42 +00:00
Merge pull request #5053 from Quix0r/latest-rc
Fix for "Illegal string offset 'success'"
This commit is contained in:
commit
5e2d2e15d6
1 changed files with 1 additions and 1 deletions
|
@ -1294,7 +1294,7 @@ class Contact extends BaseObject
|
||||||
|
|
||||||
if (($network != '') && ($ret['network'] != $network)) {
|
if (($network != '') && ($ret['network'] != $network)) {
|
||||||
logger('Expected network ' . $network . ' does not match actual network ' . $ret['network']);
|
logger('Expected network ' . $network . ' does not match actual network ' . $ret['network']);
|
||||||
return result;
|
return $result;
|
||||||
}
|
}
|
||||||
|
|
||||||
// check if we already have a contact
|
// check if we already have a contact
|
||||||
|
|
Loading…
Reference in a new issue