mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-05-02 22:25:04 -04:00
added missing line when exporting ChatID to std::string (fix by sehraf)
git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@7855 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
parent
32c9fe7eca
commit
d886c34233
1 changed files with 2 additions and 0 deletions
|
@ -150,6 +150,8 @@ std::string ChatId::toStdString() const
|
|||
std::cerr << "ChatId::toStdString() Error: sizeof(ChatLobbyId) != 8. please report this" << std::endl;
|
||||
return "";
|
||||
}
|
||||
str += "L";
|
||||
|
||||
ChatLobbyId id = lobby_id;
|
||||
for(int i = 0; i<16; i++)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue