mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-07-25 23:45:49 -04:00
fixed auto-DL from trusted identities
This commit is contained in:
parent
6c13d4bf4d
commit
1e53bf3b77
1 changed files with 10 additions and 8 deletions
|
@ -197,7 +197,9 @@ void p3MsgService::processIncomingMsg(RsMsgItem *mi)
|
||||||
}
|
}
|
||||||
|
|
||||||
// If the peer is allowed to push files, then auto-download the recommended files.
|
// If the peer is allowed to push files, then auto-download the recommended files.
|
||||||
if(rsPeers->servicePermissionFlags(mi->PeerId()) & RS_NODE_PERM_ALLOW_PUSH)
|
|
||||||
|
RsIdentityDetails id_details;
|
||||||
|
if(rsIdentity->getIdDetails(RsGxsId(mi->PeerId()),id_details) && !id_details.mPgpId.isNull() && (rsPeers->servicePermissionFlags(id_details.mPgpId) & RS_NODE_PERM_ALLOW_PUSH))
|
||||||
{
|
{
|
||||||
std::list<RsPeerId> srcIds;
|
std::list<RsPeerId> srcIds;
|
||||||
srcIds.push_back(mi->PeerId());
|
srcIds.push_back(mi->PeerId());
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue