NodeBasedEditor icon indicating copy to clipboard operation
NodeBasedEditor copied to clipboard

Loading graph issue if a pin value contains quotes

Open MMJM opened this issue 7 years ago • 2 comments

If you add a Pin of type string then try to enter in a string that contains quotes it fails to reload the graph.

It seems to have something to do with the Archive.Rad function where it tries to deserialize the string.

MMJM avatar Aug 21 '18 22:08 MMJM

This seems to fix my issue

var json = $""{value.ToString().Replace(""", "\"")}"";

MMJM avatar Aug 21 '18 22:08 MMJM

Good catch. Submit a pull request.

miroiu avatar Aug 23 '18 10:08 miroiu