sendMail check if recipients are known

This commit is contained in:
Gioacchino Mazzurco 2019-09-26 23:12:26 +02:00
parent d673ef3256
commit ae0412c087
No known key found for this signature in database
GPG key ID: A1FBCA3872E87051
6 changed files with 45 additions and 10 deletions

View file

@ -72,7 +72,6 @@ struct RsReputationInfo : RsSerializable
mFriendsNegativeVotes(0),
mFriendAverageScore(RS_REPUTATION_THRESHOLD_DEFAULT),
mOverallReputationLevel(RsReputationLevel::NEUTRAL) {}
virtual ~RsReputationInfo() {}
RsOpinion mOwnOpinion;
@ -94,6 +93,8 @@ struct RsReputationInfo : RsSerializable
RS_SERIAL_PROCESS(mFriendAverageScore);
RS_SERIAL_PROCESS(mOverallReputationLevel);
}
virtual ~RsReputationInfo();
};