aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs/Module/Dirsearch.php
diff options
context:
space:
mode:
authorMario <mario@mariovavti.com>2021-06-05 18:40:23 +0000
committerMario <mario@mariovavti.com>2021-06-05 18:40:23 +0000
commit67322c12643ced03bec0be70667f8b1c45de752f (patch)
tree39cf50841599a80038f73c0285e2a49f9ff3304b /Zotlabs/Module/Dirsearch.php
parent607f0346f42708b25f79881e845482441020ffb7 (diff)
downloadvolse-hubzilla-67322c12643ced03bec0be70667f8b1c45de752f.tar.gz
volse-hubzilla-67322c12643ced03bec0be70667f8b1c45de752f.tar.bz2
volse-hubzilla-67322c12643ced03bec0be70667f8b1c45de752f.zip
more work on directory sync
Diffstat (limited to 'Zotlabs/Module/Dirsearch.php')
-rw-r--r--Zotlabs/Module/Dirsearch.php20
1 files changed, 1 insertions, 19 deletions
diff --git a/Zotlabs/Module/Dirsearch.php b/Zotlabs/Module/Dirsearch.php
index 5d748fb80..78205a9fc 100644
--- a/Zotlabs/Module/Dirsearch.php
+++ b/Zotlabs/Module/Dirsearch.php
@@ -214,7 +214,7 @@ class Dirsearch extends Controller {
if($sync) {
$spkt = array('transactions' => array());
- $r = q("select * from updates where ud_date >= '%s' and ud_guid != '' order by ud_date desc",
+ $r = q("select * from updates where ud_date >= '%s' and ud_guid != '' and ud_addr != '' order by ud_date desc",
dbesc($sync)
);
if($r) {
@@ -234,24 +234,6 @@ class Dirsearch extends Controller {
);
}
}
- $r = q("select * from xlink where xlink_static = 1 and xlink_updated >= '%s' ",
- dbesc($sync)
- );
- if($r) {
- $spkt['ratings'] = array();
- foreach($r as $rr) {
- $spkt['ratings'][] = array(
- 'type' => 'rating',
- 'encoding' => 'zot',
- 'channel' => $rr['xlink_xchan'],
- 'target' => $rr['xlink_link'],
- 'rating' => intval($rr['xlink_rating']),
- 'rating_text' => $rr['xlink_rating_text'],
- 'signature' => $rr['xlink_sig'],
- 'edited' => $rr['xlink_updated']
- );
- }
- }
json_return_and_die($spkt);
}
else {