This commit is contained in:
aozhiwei 2020-10-15 16:09:11 +08:00
parent 6272412d62
commit 8ac9b19145

View File

@ -196,7 +196,11 @@ void SyncHelper::_SS_IM_GuildMemberUpdateResponse(f8::MsgHdr& hdr, const ss::SS_
void SyncHelper::_SS_IM_ApplyChangeResponse(f8::MsgHdr& hdr, const ss::SS_IM_ApplyChangeResponse& msg)
{
auto itr = pending_request_hash_.find(msg.seqid());
if (itr != pending_request_hash_.end()) {
a8::Timer::Instance()->DeleteTimer(itr->second);
RemovePendingRequest(msg.seqid());
}
}
void SyncHelper::RemovePendingRequest(long long seqid)