From 230a645307fa87c98e03aca58c1601222ecd6f7d Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Wed, 29 Jun 2016 20:37:04 +0200 Subject: [PATCH] Diaspora: Another Bugfix for the new protocol --- include/diaspora.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/diaspora.php b/include/diaspora.php index 89f28ca6cc..c450a10d17 100644 --- a/include/diaspora.php +++ b/include/diaspora.php @@ -428,7 +428,7 @@ class diaspora { $author_signature = base64_decode($entry); elseif (($fieldname == "parent_author_signature") AND ($entry != "")) $parent_author_signature = base64_decode($entry); - elseif ($fieldname != "target_author_signature") { + elseif (!in_array($fieldname, array("author_signature", "parent_author_signature", "target_author_signature"))) { if ($signed_data != "") { $signed_data .= ";"; $signed_data_parent .= ";"; @@ -454,7 +454,7 @@ class diaspora { // No author_signature? This is a must, so we quit. if (!isset($author_signature)) { - logger("No author signature for type ".$type, LOGGER_DEBUG); + logger("No author signature for type ".$type." - Message: ".$msg["message"], LOGGER_DEBUG); return false; }