Closed SerethiX closed 6 years ago
Fixes
When transmitting e.g. Json Values they didn't have quotes inside and therefor where invalid.
The Regex that should've checked for end of string and start of string was not limited to these string positions.
"foo
foo
"foo"
Thanks! Will have a look at the PR later!
Found another bug here, added in e3d40ad5fd209170c8268045ba086379bf9bdcf6 and more tests
thank you once again
Fixes
When transmitting e.g. Json Values they didn't have quotes inside and therefor where invalid.
The Regex that should've checked for end of string and start of string was not limited to these string positions.
Proposed Changes
"foo
would result infoo
, now it is not modified, only"foo"
is striped.