mirror of
https://github.com/matrix-construct/construct
synced 2024-11-29 10:12:39 +01:00
ircd::server: Assertion on tag removal.
This commit is contained in:
parent
a806b2d60b
commit
bc88a4cf6d
1 changed files with 2 additions and 1 deletions
|
@ -1614,7 +1614,8 @@ try
|
||||||
while(!done);
|
while(!done);
|
||||||
|
|
||||||
assert(peer);
|
assert(peer);
|
||||||
peer->handle_tag_done(*this, queue.front());
|
peer->handle_tag_done(*this, tag);
|
||||||
|
assert(!queue.empty());
|
||||||
queue.pop_front();
|
queue.pop_front();
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue