From 33b24d79f52a2ffc5de32736c06780ef60685659 Mon Sep 17 00:00:00 2001 From: Matei Adriel Date: Sat, 19 Jan 2019 23:38:16 +0200 Subject: [PATCH] typescript(translucid): fixed critical bug Signed-off-by: prescientmoon --- typescript/translucid/Translucid.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/typescript/translucid/Translucid.js b/typescript/translucid/Translucid.js index ae7a416..89416ab 100644 --- a/typescript/translucid/Translucid.js +++ b/typescript/translucid/Translucid.js @@ -37,7 +37,7 @@ class Translucid { }); } decorated.push((prev) => { - res.send(prev + "
Sent from the last iteration"); + res.send(prev); }); decorated[0](readResults); }