1
Fork 0

typescript(translucid): fixed critical bug

Signed-off-by: prescientmoon <git@moonythm.dev>
This commit is contained in:
Matei Adriel 2019-01-19 23:38:16 +02:00 committed by prescientmoon
parent 5ba5303467
commit 33b24d79f5
Signed by: prescientmoon
SSH key fingerprint: SHA256:UUF9JT2s8Xfyv76b8ZuVL7XrmimH4o49p4b+iexbVH4

View file

@ -37,7 +37,7 @@ class Translucid {
});
}
decorated.push((prev) => {
res.send(prev + "<br/>Sent from the last iteration");
res.send(prev);
});
decorated[0](readResults);
}