Fixed bug whereby requests would never be fulfilled because the fulfillment variable was never set to true.

This commit is contained in:
Tristan B. Kildaire 2020-06-23 12:46:04 +02:00
parent 705b0f8cbe
commit 086c1646b1
1 changed files with 1 additions and 0 deletions

View File

@ -33,6 +33,7 @@ public final class Request
public void fulfill(byte[] data)
{
dataReceived = data;
fulfilled = true;
}
public bool isFulfilled()