Fix double escaping of Statistics JSON

As newlines are already escaped in the JSON, this is safe.
alut-include-path
Lukas Werling 2017-02-18 19:08:15 +01:00
parent 87ee44964c
commit a4492dd828
1 changed files with 1 additions and 1 deletions

View File

@ -130,7 +130,7 @@ void C4Network2Reference::CompileFunc(StdCompiler *pComp)
pComp->Value(mkNamingAdapt(OfficialServer, "OfficialServer", false));
pComp->Value(mkNamingAdapt(NetpuncherGameID, "NetpuncherID", C4NetpuncherID(), false, false));
pComp->Value(mkNamingAdapt(NetpuncherAddr, "NetpuncherAddr", "", false, false));
pComp->Value(mkNamingAdapt(Statistics, "Statistics", "", false, false));
pComp->Value(mkNamingAdapt(mkParAdapt(Statistics, StdCompiler::RCT_All), "Statistics", "", false, false));
pComp->Value(Parameters);
}