From 58531a27483d13cf16edf0496f8b2f8cb8987129 Mon Sep 17 00:00:00 2001 From: Michael Date: Mon, 31 May 2021 20:02:53 +0000 Subject: [PATCH] Fix tests --- src/Protocol/Diaspora.php | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/Protocol/Diaspora.php b/src/Protocol/Diaspora.php index ce11a8370..586b6e9ec 100644 --- a/src/Protocol/Diaspora.php +++ b/src/Protocol/Diaspora.php @@ -4049,6 +4049,11 @@ class Diaspora return false; } + // This is only needed for the automated tests + if (empty($owner['uprvkey'])) { + return false; + } + $message = self::constructComment($item, $owner); if ($message === false) { return false;