Merge pull request #2168 from PhenomRetroShare/Fix_SystemMessageSender

Fix System Message Sender
This commit is contained in:
defnax 2020-12-20 15:44:38 +01:00 committed by GitHub
commit 43d953b992
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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);