Make path api more understandable, breaks certain code and have makeabsolute and makerelative

This commit is contained in:
2025-04-19 10:24:24 -05:00
parent 3fcd7f81d6
commit 4ec4011b46
8 changed files with 161 additions and 4 deletions

View File

@ -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 "";
}
}
}