From: Michael Vogel Date: Fri, 8 Jul 2016 18:39:14 +0000 (+0200) Subject: Diaspora: Relayed retraction hadn't worked. X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=e43a90252c710e4eb5b91b5b6f4821c2512c654c;p=friendica.git Diaspora: Relayed retraction hadn't worked. --- diff --git a/include/diaspora.php b/include/diaspora.php index 8598ca7949..f983b8e028 100644 --- a/include/diaspora.php +++ b/include/diaspora.php @@ -2117,12 +2117,6 @@ class diaspora { if (!$r) return false; - // Only delete it if the author really fits - if (!link_compare($r[0]["author-link"], $person["url"])) { - logger("Item author ".$r[0]["author-link"]." doesn't fit to expected contact ".$person["url"], LOGGER_DEBUG); - return false; - } - // Check if the sender is the thread owner $p = q("SELECT `id`, `author-link`, `origin` FROM `item` WHERE `id` = %d", intval($r[0]["parent"]));