]> git.mxchange.org Git - friendica.git/commitdiff
Fix warning "Undefined array key "alias""
authorMichael <heluecht@pirati.ca>
Fri, 23 Jun 2023 21:50:35 +0000 (21:50 +0000)
committerMichael <heluecht@pirati.ca>
Fri, 23 Jun 2023 21:50:35 +0000 (21:50 +0000)
src/Model/Contact.php

index d079a4ef62ed2582032eb2021d1734ba0f93aed5..4ffaa672e09d907ae50169acef4303fc38459a2f 100644 (file)
@@ -2811,7 +2811,7 @@ class Contact
                }
 
                $update = false;
-               $guid = ($ret['guid'] ?? '') ?: Item::guidFromUri($ret['url'], $ret['baseurl'] ?? $ret['alias']);
+               $guid = ($ret['guid'] ?? '') ?: Item::guidFromUri($ret['url'], $ret['baseurl'] ?? $ret['alias'] ?? '');
 
                // make sure to not overwrite existing values with blank entries except some technical fields
                $keep = ['batch', 'notify', 'poll', 'request', 'confirm', 'poco', 'baseurl'];