From c6fe1fde184fd31fdcd109f288ceb24c8e337aa7 Mon Sep 17 00:00:00 2001 From: Basile Burg Date: Sat, 12 Dec 2015 10:47:06 +0100 Subject: [PATCH] Dub projects, allowed description to be read as utf8 w/o BOM --- src/ce_dubproject.pas | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ce_dubproject.pas b/src/ce_dubproject.pas index 1a75258e..64004ae4 100644 --- a/src/ce_dubproject.pas +++ b/src/ce_dubproject.pas @@ -202,7 +202,7 @@ begin loader.Position:= 0; // FreeAndNil(fJSON); - parser := TJSONParser.Create(loader, fSaveAsUtf8); + parser := TJSONParser.Create(loader, true); try try fJSON := parser.Parse as TJSONObject;