From a04944d4437331ba8d544acc782595f701374482 Mon Sep 17 00:00:00 2001 From: Hypolite Petovan Date: Tue, 17 Aug 2021 08:20:58 -0400 Subject: [PATCH] Allow contact creation in Module\Debug\Feed - This module only allowed existing contact feeeds to be debugged --- src/Module/Debug/Feed.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Module/Debug/Feed.php b/src/Module/Debug/Feed.php index 18cafc50e4..37504b0783 100644 --- a/src/Module/Debug/Feed.php +++ b/src/Module/Debug/Feed.php @@ -46,7 +46,7 @@ class Feed extends BaseModule if (!empty($_REQUEST['url'])) { $url = $_REQUEST['url']; - $contact = Model\Contact::getByURLForUser($url, local_user(), false); + $contact = Model\Contact::getByURLForUser($url, local_user(), null); $xml = DI::httpRequest()->fetch($contact['poll']);