Skip to content

Commit

Permalink
https://github.com/danieleteti/delphimvcframework/issues/570
Browse files Browse the repository at this point in the history
  • Loading branch information
danieleteti committed Aug 8, 2022
1 parent d179575 commit d5c8b8e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -705,6 +705,8 @@ The current beta release is named 3.2.2-nitrogen. If you want to stay on the-edg
- Fix https://github.com/danieleteti/delphimvcframework/issues/564
- Fix https://github.com/danieleteti/delphimvcframework/issues/570 (Thanks [Marcos Nielsen](https://github.com/marcosnielsen))
- Merged [PR#543](https://github.com/danieleteti/delphimvcframework/pull/543) (Now the `PathInfo` is trimmed so the router convert this "http://myserver.com/one " to this "http://myserver.com/one")
- Fix for nil objects in lists during serialization
Expand Down
2 changes: 1 addition & 1 deletion sources/MVCFramework.Serializer.JsonDataObjects.pas
Original file line number Diff line number Diff line change
Expand Up @@ -2313,7 +2313,7 @@ procedure TMVCJsonDataObjectsSerializer.JSONObjectToRecord(const JSONObject: TJs
lTypeSize := RTTIType.TypeSize;
GetMem(Buffer, lTypeSize);
FillChar(Buffer^, lTypeSize, 0);
{$IF Defined(RIOORBETTER)}
{$IF Defined(SYDNEYORBETTER)}
InvokeRecordInitializer(Buffer, RTTIType.Handle);
{$ENDIF}
lField := nil;
Expand Down

0 comments on commit d5c8b8e

Please sign in to comment.