0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-06-18 18:08:21 +02:00

ircd::server: Assertion on tag removal.

This commit is contained in:
Jason Volk 2018-09-04 08:12:47 -07:00
parent a806b2d60b
commit bc88a4cf6d

View file

@ -1614,7 +1614,8 @@ try
while(!done);
assert(peer);
peer->handle_tag_done(*this, queue.front());
peer->handle_tag_done(*this, tag);
assert(!queue.empty());
queue.pop_front();
return true;
}