added a "show author in People" function in mails

This commit is contained in:
csoler 2019-01-03 22:20:00 +01:00
parent ca50944ddf
commit 3b6bac2d9b
No known key found for this signature in database
GPG key ID: 7BCA522266C0804C
3 changed files with 46 additions and 2 deletions

View file

@ -852,7 +852,7 @@ bool p3MsgService::getMessage(const std::string &mId, MessageInfo &msg)
std::map<uint32_t, RsMsgSrcId*>::const_iterator it = mSrcIds.find(msgId) ;
if(it != mSrcIds.end())
msg.rsgxsid_srcId = RsGxsId(it->second->srcId) ;
msg.rsgxsid_srcId = RsGxsId(it->second->srcId) ; // (cyril) this is a hack. Not good. I'm not removing it because it may have consequences, but I dont like this.
return true;
}