diff options
author | zotlabs <mike@macgirvin.com> | 2017-06-12 21:12:14 -0700 |
---|---|---|
committer | zotlabs <mike@macgirvin.com> | 2017-06-12 21:12:14 -0700 |
commit | f526b9fcfbca2cf7a23d21653da3c63ad4bc91fa (patch) | |
tree | 2b0afe1cf1b92ced34ac3676581709b76e773b1e /include | |
parent | 8bf9b1311d8728aec7bce93c7e59ffe022a31d49 (diff) | |
download | volse-hubzilla-f526b9fcfbca2cf7a23d21653da3c63ad4bc91fa.tar.gz volse-hubzilla-f526b9fcfbca2cf7a23d21653da3c63ad4bc91fa.tar.bz2 volse-hubzilla-f526b9fcfbca2cf7a23d21653da3c63ad4bc91fa.zip |
ostatus is almost unrecognisable these days from its former self. In this case thr:in-reply-to has almost no meaning since it almost never refers to a top level post; which makes it quite difficult to preserve conversations
Diffstat (limited to 'include')
-rw-r--r-- | include/feedutils.php | 18 |
1 files changed, 15 insertions, 3 deletions
diff --git a/include/feedutils.php b/include/feedutils.php index 2e67208a7..5af6a01b0 100644 --- a/include/feedutils.php +++ b/include/feedutils.php @@ -1000,11 +1000,23 @@ function consume_feed($xml, $importer, &$contact, $pass = 0) { dbesc($parent_mid), intval($importer['channel_id']) ); - if($x) - $parent_mid = $x[0]['mid']; - $datarray['parent_mid'] = $parent_mid; + if($x) { + $pmid = $x[0]['mid']; + $datarray['parent_mid'] = $pmid; + } + else { + // immediate parent wasn't found. Turn into a top-level post if permissions allow + // but save the thread_parent in case we need to refer to it later. We should probably + // also save the ostatus:conversation_id + + if(! post_is_importable($datarray, $contact)) + continue; + $datarray['parent_mid'] = $datarray['mid']; + set_iconfig($datarray,'system','parent_mid',$parent_mid,true); + } + $datarray['aid'] = $importer['channel_account_id']; $datarray['uid'] = $importer['channel_id']; |