diff options
author | zotlabs <mike@macgirvin.com> | 2017-06-29 21:09:08 -0700 |
---|---|---|
committer | zotlabs <mike@macgirvin.com> | 2017-06-29 21:09:08 -0700 |
commit | da1b10b741ec7525b9d76b2bdfaa3b794a39dde3 (patch) | |
tree | 2733890bcc80d09265a51cb64db349c914a0582a /include/feedutils.php | |
parent | c7b4a53af2d2d73b8c0bb59cf851813163f65987 (diff) | |
download | volse-hubzilla-da1b10b741ec7525b9d76b2bdfaa3b794a39dde3.tar.gz volse-hubzilla-da1b10b741ec7525b9d76b2bdfaa3b794a39dde3.tar.bz2 volse-hubzilla-da1b10b741ec7525b9d76b2bdfaa3b794a39dde3.zip |
forgot to return true from the conversation_fetch routine - which triggers the rescan for potential parent posts
Diffstat (limited to 'include/feedutils.php')
-rw-r--r-- | include/feedutils.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/feedutils.php b/include/feedutils.php index 835d739df..2755a7e3f 100644 --- a/include/feedutils.php +++ b/include/feedutils.php @@ -1276,6 +1276,8 @@ function feed_conversation_fetch($importer,$contact,$parent_link) { consume_feed($data,$importer,$contact,1); consume_feed($data,$importer,$contact,2); + + return true; } |