diff options
Diffstat (limited to 'src/messaging/serviceFactory.cpp')
-rw-r--r-- | src/messaging/serviceFactory.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/messaging/serviceFactory.cpp b/src/messaging/serviceFactory.cpp index 09bced01..35ff3a98 100644 --- a/src/messaging/serviceFactory.cpp +++ b/src/messaging/serviceFactory.cpp @@ -69,8 +69,9 @@ service* serviceFactory::create if (u.port() != url::UNSPECIFIED_PORT) sess.properties()[serv->infos().propertyPrefix() + "server.port"] = u.port(); - if (!u.path().empty()) - sess.properties()[serv->infos().propertyPrefix() + "server.path"] = u.path(); + // Path portion of the URL is used to point a specific folder (empty = root) + //if (!u.path().empty()) + // sess.properties()[serv->infos().propertyPrefix() + "server.path"] = u.path(); if (!u.username().empty()) { |