Open GoogleCodeExporter opened 9 years ago
Suggested patch (untested):
Index: src/HFM.Client/MessageCache.cs
===================================================================
--- src/HFM.Client/MessageCache.cs (revision 699)
+++ src/HFM.Client/MessageCache.cs (working copy)
@@ -170,6 +170,8 @@
buffer.SubstringBuilder(startIndex, message.Value, endIndex - startIndex);
// replace PyON values with JSON values
message.Value.Replace(": None", ": null");
+ message.Value.Replace(": True", ": true");
+ message.Value.Replace(": False", ": false");
// set the index so we know where to trim the string (end plus footer length)
int nextStartIndex = endIndex + PyonFooter.Length;
Original comment by calxa...@gmail.com
on 20 Jan 2014 at 2:41
Original issue reported on code.google.com by
da...@coton.me.uk
on 12 Jan 2014 at 1:32