Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--framework/bundles/org.eclipse.ecf.discovery.ui/src/org/eclipse/ecf/discovery/ui/UrlServiceAccessHandler.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/framework/bundles/org.eclipse.ecf.discovery.ui/src/org/eclipse/ecf/discovery/ui/UrlServiceAccessHandler.java b/framework/bundles/org.eclipse.ecf.discovery.ui/src/org/eclipse/ecf/discovery/ui/UrlServiceAccessHandler.java
index 33ed28336..e0ad3d065 100644
--- a/framework/bundles/org.eclipse.ecf.discovery.ui/src/org/eclipse/ecf/discovery/ui/UrlServiceAccessHandler.java
+++ b/framework/bundles/org.eclipse.ecf.discovery.ui/src/org/eclipse/ecf/discovery/ui/UrlServiceAccessHandler.java
@@ -62,7 +62,7 @@ public class UrlServiceAccessHandler implements IServiceAccessHandler {
IServiceProperties svcProps = serviceInfo.getServiceProperties();
final String path = svcProps.getPropertyString(RFC2782_PATH);
if (path != null) {
- if (path.startsWith("/"))buf.append("/"); //$NON-NLS-1$ //$NON-NLS-2$
+ if (!path.startsWith("/"))buf.append("/"); //$NON-NLS-1$ //$NON-NLS-2$
buf.append(path);
}
final String urlString = buf.toString();

Back to the top