aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorzotlabs <mike@macgirvin.com>2017-06-29 21:09:08 -0700
committerzotlabs <mike@macgirvin.com>2017-06-29 21:09:08 -0700
commitda1b10b741ec7525b9d76b2bdfaa3b794a39dde3 (patch)
tree2733890bcc80d09265a51cb64db349c914a0582a /include
parentc7b4a53af2d2d73b8c0bb59cf851813163f65987 (diff)
downloadvolse-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')
-rw-r--r--include/feedutils.php2
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;
}