Fix wrong use of DPA::p return value in Module\NoScrape

- Address https://github.com/friendica/friendica/issues/7998#issuecomment-579036775
This commit is contained in:
Hypolite Petovan 2020-01-27 21:56:50 -05:00
parent 0b8fd92e1e
commit 65cb77b6a0

View file

@ -69,11 +69,20 @@ class NoScrape extends BaseModule
$json_info['language'] = $a->profile['language']; $json_info['language'] = $a->profile['language'];
if (!($a->profile['hide-friends'] ?? false)) { if (!($a->profile['hide-friends'] ?? false)) {
/// @todo What should this value tell us? $stmt = DBA::p(
$result = DBA::p("SELECT `gcontact`.`updated` FROM `contact` INNER JOIN `gcontact` WHERE `gcontact`.`nurl` = `contact`.`nurl` AND `self` AND `uid` = ? LIMIT 1", intval($a->profile['uid'])); "SELECT `gcontact`.`updated`
if (DBA::isResult($result)) { FROM `contact`
$json_info["updated"] = date("c", strtotime($result[0]['updated'])); INNER JOIN `gcontact`
WHERE `gcontact`.`nurl` = `contact`.`nurl`
AND `self`
AND `uid` = ?
LIMIT 1",
intval($a->profile['uid'])
);
if ($gcontact = DBA::fetch($stmt)) {
$json_info["updated"] = date("c", strtotime($gcontact['updated']));
} }
DBA::close($stmt);
$json_info['contacts'] = DBA::count('contact', $json_info['contacts'] = DBA::count('contact',
[ [