diff options
author | Mario <mario@mariovavti.com> | 2021-05-21 06:44:21 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2021-05-21 06:44:21 +0000 |
commit | 5705005ca3172f7f6fe56a61761de6a8a54a8f10 (patch) | |
tree | 2696dbfb52c54f23a653aa0c09312fbca101d8f4 /include/items.php | |
parent | 79b4642b32b441e8b2d7924577af59c1c15ee092 (diff) | |
parent | c9981ff0e176934a99a198068da332bb1a65fbde (diff) | |
download | volse-hubzilla-5705005ca3172f7f6fe56a61761de6a8a54a8f10.tar.gz volse-hubzilla-5705005ca3172f7f6fe56a61761de6a8a54a8f10.tar.bz2 volse-hubzilla-5705005ca3172f7f6fe56a61761de6a8a54a8f10.zip |
Merge branch 'dev' of https://framagit.org/hubzilla/core into dev
Diffstat (limited to 'include/items.php')
-rw-r--r-- | include/items.php | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/include/items.php b/include/items.php index 7be3d5286..63edae972 100644 --- a/include/items.php +++ b/include/items.php @@ -971,7 +971,7 @@ function import_author_xchan($x) { if($y) return $y; - if(!$y && !isset($x['network']) || $x['network'] === 'zot') { + if(!isset($x['network']) || $x['network'] === 'zot') { $y = import_author_zot($x); } @@ -981,8 +981,9 @@ function import_author_xchan($x) { $r = q("SELECT xchan_hash FROM xchan WHERE xchan_url = '%s' AND xchan_network = 'zot6'", dbesc($x['url']) ); - if(! $r) - discover_by_webbie($x['url'], 'zot6'); + // TODO: fix dupplicate with line 960 + if(!$r) + discover_by_webbie($x['url'], 'zot6'); //TODO use the return of discover_by_webbie } return $y; |