From cb7f52cc6a3b21476ed7fa44af34e46486d28038 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Roland=20H=C3=A4der?= Date: Sat, 16 Jul 2022 12:18:08 +0200 Subject: [PATCH] Fixed: - $item is the proper array here, - see https://github.com/friendica/friendica/issues/11632#issuecomment-1186119430 --- src/Protocol/OStatus.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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']); } } }