mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-05-02 06:06:10 -04:00
fixed bug causing failure of group autosubscribe in GxsTrans
This commit is contained in:
parent
37edcc1e37
commit
700d114cf4
1 changed files with 2 additions and 2 deletions
|
@ -191,8 +191,8 @@ void p3GxsTrans::handleResponse(uint32_t token, uint32_t req_type)
|
|||
{
|
||||
RS_STACK_MUTEX(mDataMutex);
|
||||
|
||||
bool shouldSubscribe = !subscribed && ((!old)|| meta.mGroupId == mPreferredGroupId );
|
||||
bool shouldUnSubscribe = subscribed && old && meta.mGroupId != mPreferredGroupId;
|
||||
shouldSubscribe = !subscribed && ((!old)|| meta.mGroupId == mPreferredGroupId );
|
||||
shouldUnSubscribe = subscribed && old && meta.mGroupId != mPreferredGroupId;
|
||||
}
|
||||
|
||||
#ifdef DEBUG_GXSTRANS
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue