mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-05-02 22:25:04 -04:00
Fix System Message Sender
This commit is contained in:
parent
df5d1ab237
commit
d1ba81e50f
1 changed files with 2 additions and 3 deletions
|
@ -1331,11 +1331,10 @@ bool p3MsgService::SystemMessage(const std::string &title, const std::string &me
|
|||
return false;
|
||||
}
|
||||
|
||||
const RsPeerId& ownId = mServiceCtrl->getOwnId();
|
||||
|
||||
RsMsgItem *msg = new RsMsgItem();
|
||||
|
||||
msg->PeerId(ownId);
|
||||
msg->PeerId();// Notification == null
|
||||
|
||||
msg->msgFlags = 0;
|
||||
|
||||
|
@ -1356,7 +1355,7 @@ bool p3MsgService::SystemMessage(const std::string &title, const std::string &me
|
|||
msg->subject = title;
|
||||
msg->message = message;
|
||||
|
||||
msg->rspeerid_msgto.ids.insert(ownId);
|
||||
msg->rspeerid_msgto.ids.insert(mServiceCtrl->getOwnId());
|
||||
|
||||
processIncomingMsg(msg);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue