2
0
mirror of https://github.com/esiur/esiur-js.git synced 2026-04-03 21:48:21 +00:00
This commit is contained in:
2022-08-27 00:37:58 +03:00
parent 93aeaee315
commit 4fcb5355bc
9 changed files with 87 additions and 18 deletions

View File

@@ -133,9 +133,10 @@ export default class DataDeserializer {
static resourceParser(
data, offset, length, connection, requestSequence) {
if (connection != null) {
var id = data.getUint32(offset, requestSequence);
return connection.fetch(id);
return connection.fetch(id, requestSequence);
}
throw Error("Can't parse resource with no connection");
}