diff options
author | Mario <mario@mariovavti.com> | 2020-10-14 08:17:35 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2020-10-14 08:17:35 +0000 |
commit | 91dd877c2d022b8939ab5602753ce247b8603c0b (patch) | |
tree | 734f6c4251f3a9bfbda9a8b264930ea82b873efb /Zotlabs | |
parent | 89c74868aa48b97a88865e3385f7fccd6912d761 (diff) | |
parent | e2e160b8e8d01eb0d2c537318f1d738aef9df9c8 (diff) | |
download | volse-hubzilla-91dd877c2d022b8939ab5602753ce247b8603c0b.tar.gz volse-hubzilla-91dd877c2d022b8939ab5602753ce247b8603c0b.tar.bz2 volse-hubzilla-91dd877c2d022b8939ab5602753ce247b8603c0b.zip |
Merge branch 'dev' into 5.0RC
Diffstat (limited to 'Zotlabs')
-rw-r--r-- | Zotlabs/Lib/Activity.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Zotlabs/Lib/Activity.php b/Zotlabs/Lib/Activity.php index 6d12f7ea1..08e5ffaca 100644 --- a/Zotlabs/Lib/Activity.php +++ b/Zotlabs/Lib/Activity.php @@ -3194,11 +3194,12 @@ class Activity { static function find_best_identity($xchan) { if(filter_var($xchan, FILTER_VALIDATE_URL)) { - $r = q("select hubloc_hash, hubloc_network from hubloc where hubloc_id_url = '%s'", + $r = q("select hubloc_hash, hubloc_network from hubloc where hubloc_id_url = '%s' and hubloc_network in ('zot6', 'zot') and hubloc_deleted = 0", dbesc($xchan) ); if ($r) { $r = Libzot::zot_record_preferred($r); + logger('find_best_identity: ' . $xchan . ' > ' . $r['hubloc_hash']); return $r['hubloc_hash']; } } |