forgot to return true from the conversation_fetch routine - which triggers the rescan for potential parent posts

This commit is contained in:
zotlabs 2017-06-29 21:09:08 -07:00
parent c7b4a53af2
commit da1b10b741

View File

@ -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;
}