Make path api more understandable, breaks certain code and have makeabsolute and makerelative
This commit is contained in:
@ -459,7 +459,7 @@ namespace Tesses::Framework::Serialization::Json
|
||||
}
|
||||
else if((c >= 0 && c < 32) || c == 127 )
|
||||
{
|
||||
str2.append("\\\\u00");
|
||||
str2.append("\\u00");
|
||||
uint8_t c2 = (uint8_t)c;
|
||||
|
||||
str2.push_back(HttpUtils::NibbleToHex((c2 >> 4) & 0x0F));
|
||||
@ -524,4 +524,4 @@ namespace Tesses::Framework::Serialization::Json
|
||||
return "";
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user