diff --git a/retroshare-gui/src/gui/gxs/GxsCommentTreeWidget.cpp b/retroshare-gui/src/gui/gxs/GxsCommentTreeWidget.cpp index f12c238bd..481ad0e81 100644 --- a/retroshare-gui/src/gui/gxs/GxsCommentTreeWidget.cpp +++ b/retroshare-gui/src/gui/gxs/GxsCommentTreeWidget.cpp @@ -530,24 +530,13 @@ void GxsCommentTreeWidget::service_requestComments(const RsGxsGroupId& group_id, std::cerr << "GxsCommentTreeWidget::service_requestComments for group " << group_id << std::endl; #endif - std::vector ids_to_ask; - - for(std::set::const_iterator it(msgIds.begin());it!=msgIds.end();++it) - { -#ifdef DEBUG_GXSCOMMENT_TREEWIDGET - std::cerr << " asking for msg " << *it << std::endl; -#endif - - ids_to_ask.push_back(std::make_pair(group_id,*it)); - } - RsThread::async([this,group_id,msgIds]() { std::vector comments; if(!mCommentService->getRelatedComments(group_id,msgIds,comments)) { - std::cerr << __PRETTY_FUNCTION__ << " failed to get circles summaries " << std::endl; + std::cerr << __PRETTY_FUNCTION__ << " failed to get comments" << std::endl; return; }