mirror of
https://github.com/RetroShare/RetroShare.git
synced 2024-10-01 02:35:48 -04:00
fixed UTF-8 group names
This commit is contained in:
parent
941959cc86
commit
04a1c10a56
@ -1805,7 +1805,7 @@ bool FriendList::exportFriendlist(QString &fileName)
|
||||
|
||||
QDomElement group = doc.createElement("group");
|
||||
// id is not needed since it may differ between locatiosn / pgp ids (groups are identified by name)
|
||||
group.setAttribute("name", QString::fromStdString(group_info.name));
|
||||
group.setAttribute("name", QString::fromUtf8(group_info.name.c_str()));
|
||||
group.setAttribute("flag", group_info.flag);
|
||||
|
||||
for(std::set<RsPgpId>::iterator i = group_info.peerIds.begin(); i != group_info.peerIds.end(); i++) {
|
||||
|
Loading…
Reference in New Issue
Block a user