0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-09-28 19:58:53 +02:00

modules/client/sync: Fix erroneous assertion related f8ed27403e

This commit is contained in:
Jason Volk 2020-03-23 09:50:14 -07:00
parent 5ddb14884c
commit 439de6fbe6

View file

@ -493,7 +493,7 @@ try
}; };
char buf[64]; char buf[64];
assert(!data.phased || next_batch >= 0L); assert(data.phased || next_batch >= 0L);
const string_view &next_batch_token const string_view &next_batch_token
{ {
// The polylog phased since token. We pack two numbers separted by a '_' // The polylog phased since token. We pack two numbers separted by a '_'