0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-11-25 08:12:37 +01:00

modules/federation/send: Fix swapped eval opts.

This commit is contained in:
Jason Volk 2020-04-21 21:42:33 -07:00
parent b06a32691c
commit 260bc798d7

View file

@ -92,8 +92,8 @@ handle_pdus(client &client,
vmopts.nothrows = -1U;
vmopts.node_id = request.node_id;
vmopts.txn_id = txn_id;
vmopts.fetch_prev = bool(fetch_state);
vmopts.fetch_state = bool(fetch_prev);
vmopts.fetch_prev = bool(fetch_prev);
vmopts.fetch_state = bool(fetch_state);
vmopts.fetch_prev_wait_count = -1;
m::vm::eval eval
{