* Disabled personal signatures on Channel Messages.

* Made "ConnectCallback" more accurate.
 * Improved DHT display slightly.



git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@3606 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
drbob 2010-10-04 22:25:12 +00:00
parent 0ea899de29
commit 5321c35d30
3 changed files with 53 additions and 14 deletions

View file

@ -278,7 +278,12 @@ bool p3Channels::ChannelMessageSend(ChannelMsgInfo &info)
cmsg->thumbnail.image_type = 0;
}
std::string msgId = publishMsg(cmsg, true);
bool toSign = false;
// Channels are not personally signed yet... (certainly not by default!).
// This functionality can easily be added once its available in the gui + API.
// should check the GroupFlags for default.
std::string msgId = publishMsg(cmsg, toSign);
return true;
}