From 76e404db5447b1eeb2b8b5ac7d14d8018d397d53 Mon Sep 17 00:00:00 2001 From: csoler Date: Thu, 28 Apr 2011 19:07:16 +0000 Subject: [PATCH] suppressed channel source ID from the file source peer list git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@4175 b45a01b8-16f6-495d-af2f-9b41ad6348cc --- retroshare-gui/src/gui/feeds/ChanMsgItem.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/retroshare-gui/src/gui/feeds/ChanMsgItem.cpp b/retroshare-gui/src/gui/feeds/ChanMsgItem.cpp index 002c5a8ef..44d3279a4 100644 --- a/retroshare-gui/src/gui/feeds/ChanMsgItem.cpp +++ b/retroshare-gui/src/gui/feeds/ChanMsgItem.cpp @@ -191,7 +191,7 @@ void ChanMsgItem::updateItemStatic() { /* add file */ SubFileItem *fi = new SubFileItem(it->hash, it->fname, it->path, it->size, - SFI_STATE_REMOTE | SFI_TYPE_CHANNEL, mChanId); + SFI_STATE_REMOTE | SFI_TYPE_CHANNEL, ""); mFileItems.push_back(fi); QLayout *layout = expandFrame->layout();