diff options
Diffstat (limited to 'src/uscxml/URL.cpp')
-rw-r--r-- | src/uscxml/URL.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/uscxml/URL.cpp b/src/uscxml/URL.cpp index 1ed99c3..1ba8404 100644 --- a/src/uscxml/URL.cpp +++ b/src/uscxml/URL.cpp @@ -176,7 +176,7 @@ URLImpl::operator Data() const { data.compound["scheme"] = Data(_uri.scheme(), Data::VERBATIM); data.compound["path"] = Data(_uri.path(), Data::VERBATIM); data.compound["port"] = Data(_uri.port()); - data.compound["isAbsolute"] = Data(_uri.is_absolute() ? "true" : "false"); + data.compound["isAbsolute"] = Data(_uri.is_absolute()); if (_statusCode.length() > 0) data.compound["statusCode"] = Data(_statusCode, Data::VERBATIM); if (_statusMsg.length() > 0) |