From 98857436bd3ac9d680b2f6e6887dc205a0587248 Mon Sep 17 00:00:00 2001 From: YourFriendlyNeighborhoodDealer <3167982-YourFriendlyNeighborhoodDealer@users.noreply.gitlab.com> Date: Fri, 14 Dec 2018 09:34:33 +0100 Subject: [PATCH] Now correctly using image data for new data format --- merger.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/merger.js b/merger.js index 1a4cec1..4360724 100644 --- a/merger.js +++ b/merger.js @@ -249,7 +249,7 @@ function ReadData(data) { // dont allow overwriting // ?!>>> if (!currQuestion.HasImage()) { - currQuestion.I = currData; + currQuestion.I = JSON.parse(currData); } ExpectedIdentifier = ['?', '+']; continue;