You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There's a bug in the XSuperObject.pas unit at line 1554 in the function TSuperArray.SaveTo(Stream: TStream; const Ident, UniversalTime: Boolean) where the JSON content won't get save to the passed in Stream as there is a mistake to where the JSON gets written. S.SaveToStream(S);
should be S.SaveToStream(Stream);
The text was updated successfully, but these errors were encountered:
MarkRSill
added a commit
to vas-dev/x-superobject
that referenced
this issue
Nov 13, 2018
There's a bug in the XSuperObject.pas unit at line 1554 in the function TSuperArray.SaveTo(Stream: TStream; const Ident, UniversalTime: Boolean) where the JSON content won't get save to the passed in Stream as there is a mistake to where the JSON gets written.
S.SaveToStream(S);
should be
S.SaveToStream(Stream);
The text was updated successfully, but these errors were encountered: