summaryrefslogtreecommitdiffstats
path: root/src/uscxml/URL.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/uscxml/URL.cpp')
-rw-r--r--src/uscxml/URL.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/uscxml/URL.cpp b/src/uscxml/URL.cpp
index 79a3f65..4e97faa 100644
--- a/src/uscxml/URL.cpp
+++ b/src/uscxml/URL.cpp
@@ -179,7 +179,7 @@ URLImpl::operator Data() const {
data.compound["host"] = Data(_uri.host(), Data::VERBATIM);
data.compound["scheme"] = Data(_uri.scheme(), Data::VERBATIM);
data.compound["path"] = Data(_uri.path(), Data::VERBATIM);
- data.compound["port"] = Data(_uri.port());
+ data.compound["port"] = Data(_uri.port(), Data::INTERPRETED);
data.compound["isAbsolute"] = Data(_uri.is_absolute());
if (_statusCode.length() > 0)
data.compound["statusCode"] = Data(_statusCode, Data::VERBATIM);