removed unnecessary string to string conversion

git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@7651 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
csoler 2014-10-31 21:19:52 +00:00
parent 9311dc5922
commit ec2d6ed2c7

View file

@ -1859,7 +1859,7 @@ bool p3IdService::cache_load_ownids(uint32_t token)
if (item->meta.mSubscribeFlags & GXS_SERV::GROUP_SUBSCRIBE_ADMIN)
{
mOwnIds.push_back(RsGxsId(item->meta.mGroupId.toStdString()));
mOwnIds.push_back(RsGxsId(item->meta.mGroupId));
}
delete item ;
}