patch "Fix_ChannelNotificationFeedLink" from Phenom. Allows to finish loading a channel before jumping to the linked post

git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@6973 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
csoler 2013-12-27 22:15:53 +00:00
parent 03c68c1276
commit 3b381b9d22

View File

@ -30,6 +30,7 @@
#include <algorithm>
#include <set>
#include <map>
#include <time.h>
#include <retroshare/rsfiles.h>
@ -852,6 +853,13 @@ bool ChannelFeed::navigate(const std::string& channelId, const std::string& msgI
return true;
}
//update channel thread
updateChannelMsgs();
//Waiting thread finished
time_t now=time(NULL);
while(fillThread && ((now+300)>time(NULL)))
QCoreApplication::processEvents(QEventLoop::AllEvents, 100);
/* Search exisiting item */
QList<ChanMsgItem*>::iterator mit;
for (mit = mChanMsgItems.begin(); mit != mChanMsgItems.end(); mit++) {