fixed bug due to missing iterator increment

This commit is contained in:
csoler 2020-03-19 21:20:52 +01:00
parent cd4594d0a3
commit 1a9ac16546
No known key found for this signature in database
GPG Key ID: 7BCA522266C0804C

View File

@ -358,6 +358,9 @@ public:
mTokenService.cancelRequest(it->first);
it = mActiveTokens.erase(it);
}
else
++it;
return true;
}