From 58ce0d799b0dd2b41689c5064c70d0128db03536 Mon Sep 17 00:00:00 2001 From: Michael Date: Mon, 5 Nov 2018 17:59:46 +0000 Subject: [PATCH 1/2] Directory issue 15: Support the "account-type" --- mod/noscrape.php | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/mod/noscrape.php b/mod/noscrape.php index 3a8abe2290..9d244a42c8 100644 --- a/mod/noscrape.php +++ b/mod/noscrape.php @@ -27,12 +27,13 @@ function noscrape_init(App $a) Profile::load($a, $which, $profile); $json_info = [ - 'addr' => $a->profile['addr'], - 'nick' => $which, - 'guid' => $a->profile['guid'], - 'key' => $a->profile['pubkey'], - 'homepage' => System::baseUrl()."/profile/{$which}", - 'comm' => ($a->profile['account-type'] == Contact::ACCOUNT_TYPE_COMMUNITY), + 'addr' => $a->profile['addr'], + 'nick' => $which, + 'guid' => $a->profile['guid'], + 'key' => $a->profile['pubkey'], + 'homepage' => System::baseUrl()."/profile/{$which}", + 'comm' => ($a->profile['account-type'] == Contact::ACCOUNT_TYPE_COMMUNITY), + 'account-type' => $a->profile['account-type'], ]; if (!$a->profile['net-publish'] || $a->profile['hidewall']) { From 9d63c3eb013163c3643a53187e1acdbfa8064d4c Mon Sep 17 00:00:00 2001 From: Michael Date: Mon, 5 Nov 2018 18:03:26 +0000 Subject: [PATCH 2/2] Language is now transmitted as well --- mod/noscrape.php | 1 + 1 file changed, 1 insertion(+) diff --git a/mod/noscrape.php b/mod/noscrape.php index 9d244a42c8..0964e85ca1 100644 --- a/mod/noscrape.php +++ b/mod/noscrape.php @@ -52,6 +52,7 @@ function noscrape_init(App $a) $json_info['fn'] = $a->profile['name']; $json_info['photo'] = $contactPhoto["photo"]; $json_info['tags'] = $keywords; + $json_info['language'] = $a->profile['language']; if (is_array($a->profile) && !$a->profile['hide-friends']) { /// @todo What should this value tell us?