Re: [reSIProcate] DUM and Privacy
Thanks for reporting this. I think I see what's causing it.
Are you able to try out the following fix and see if it works for you?
Modify the following code around line 1000 in dum/Dialog.cxx
if (mDialogSet.mUserProfile->isAnonymous())
{
request.header(h_Privacys).push_back(PrivacyCategory(Symbols::id));
}
to be
if (mDialogSet.mUserProfile->isAnonymous())
{
request.remove(h_Privacys);
request.header(h_Privacys).push_back(PrivacyCategory(Symbols::id));
}
Thanks,
Scott