From: Roland Häder Date: Sat, 16 Jul 2022 10:18:08 +0000 (+0200) Subject: Fixed: X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=cb7f52cc6a3b21476ed7fa44af34e46486d28038;p=friendica.git Fixed: - $item is the proper array here, - see https://github.com/friendica/friendica/issues/11632#issuecomment-1186119430 --- diff --git a/src/Protocol/OStatus.php b/src/Protocol/OStatus.php index 36dbb06c84..1efbb0bf39 100644 --- a/src/Protocol/OStatus.php +++ b/src/Protocol/OStatus.php @@ -1168,7 +1168,7 @@ class OStatus break; default: - Logger::warning('Unsupported rel=' . $attribute['rel'] . ', href=' . $attribute['href'] . ', object-type=' . $attribute['object-type']); + Logger::warning('Unsupported rel=' . $attribute['rel'] . ', href=' . $attribute['href'] . ', object-type=' . $item['object-type']); } } }