aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs/Lib/Libzotdir.php
diff options
context:
space:
mode:
authorMario Vavti <mario@mariovavti.com>2023-04-27 22:26:53 +0200
committerMario Vavti <mario@mariovavti.com>2023-04-27 22:26:53 +0200
commit5da58d42f6b86d6aa026444a9163909eb5e0d49d (patch)
tree28570e633740d81f7a55b88ed5555dae20904b56 /Zotlabs/Lib/Libzotdir.php
parent299b6037c99eafe13c94284029d55beddb571a5e (diff)
downloadvolse-hubzilla-5da58d42f6b86d6aa026444a9163909eb5e0d49d.tar.gz
volse-hubzilla-5da58d42f6b86d6aa026444a9163909eb5e0d49d.tar.bz2
volse-hubzilla-5da58d42f6b86d6aa026444a9163909eb5e0d49d.zip
adjust args in libzotdir update and some dir sync fixes
Diffstat (limited to 'Zotlabs/Lib/Libzotdir.php')
-rw-r--r--Zotlabs/Lib/Libzotdir.php8
1 files changed, 5 insertions, 3 deletions
diff --git a/Zotlabs/Lib/Libzotdir.php b/Zotlabs/Lib/Libzotdir.php
index b000c0a69..5677d2263 100644
--- a/Zotlabs/Lib/Libzotdir.php
+++ b/Zotlabs/Lib/Libzotdir.php
@@ -282,7 +282,7 @@ class Libzotdir {
}
// there is more recent xchan information
- if ($r[0]['ud_date'] >= $t['timestamp']) {
+ if ($r[0]['ud_date'] <= $t['timestamp']) {
$update = DIRECTORY_UPDATE_XCHAN;
}
@@ -347,6 +347,7 @@ class Libzotdir {
}
if (intval($ud['ud_flags']) === DIRECTORY_UPDATE_FLAGS) {
+ self::update($ud['ud_hash'], $ud['ud_addr'], $ud['ud_flags'], false);
return true;
}
@@ -355,6 +356,7 @@ class Libzotdir {
$zf = Zotfinger::exec($href);
if($zf && array_path_exists('signature/signer',$zf) && $zf['signature']['signer'] === $href && intval($zf['signature']['header_valid'])) {
$xc = Libzot::import_xchan($zf['data']);
+
// This is a workaround for a missing xchan_updated column
// TODO: implement xchan_updated in the xchan table and update this column instead
if($zf['data']['primary_location']['address'] && $zf['data']['primary_location']['url']) {
@@ -459,7 +461,7 @@ class Libzotdir {
);
}
- self::update($hash, $p[0]['xchan_url']);
+ self::update($hash, $p[0]['xchan_url'], $p[0]['xchan_censored']);
}
@@ -667,7 +669,7 @@ class Libzotdir {
* @param bool $bump_date (optional) default true
*/
- static function update($hash, $addr, $bump_date = true, $flag = DIRECTORY_FLAG_OK) {
+ static function update($hash, $addr, $flag, $bump_date = true) {
$dirmode = intval(get_config('system', 'directory_mode'));