From edc6ba976dbfe05fb143f458e3ff999e6570a4bf Mon Sep 17 00:00:00 2001
From: Michael <heluecht@pirati.ca>
Date: Tue, 13 Nov 2018 07:09:14 +0000
Subject: [PATCH] Output all technical fields - even for hidden contacts

---
 mod/noscrape.php | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/mod/noscrape.php b/mod/noscrape.php
index 0964e85ca..87367d536 100644
--- a/mod/noscrape.php
+++ b/mod/noscrape.php
@@ -36,6 +36,11 @@ function noscrape_init(App $a)
 		'account-type' => $a->profile['account-type'],
 	];
 
+	$dfrn_pages = ['request', 'confirm', 'notify', 'poll'];
+	foreach ($dfrn_pages as $dfrn) {
+		$json_info["dfrn-{$dfrn}"] = System::baseUrl()."/dfrn_{$dfrn}/{$which}";
+	}
+
 	if (!$a->profile['net-publish'] || $a->profile['hidewall']) {
 		header('Content-type: application/json; charset=utf-8');
 		$json_info["hide"] = true;
@@ -99,11 +104,6 @@ function noscrape_init(App $a)
 		}
 	}
 
-	$dfrn_pages = ['request', 'confirm', 'notify', 'poll'];
-	foreach ($dfrn_pages as $dfrn) {
-		$json_info["dfrn-{$dfrn}"] = System::baseUrl()."/dfrn_{$dfrn}/{$which}";
-	}
-
 	//Output all the JSON!
 	header('Content-type: application/json; charset=utf-8');
 	echo json_encode($json_info);