Bugfix for debugger not hitting the breakpoints
authorEugene Ostroukhov <eugeneo@symbian.org>
Fri, 05 Feb 2010 14:12:27 -0800
changeset 103 ef9f02ee3266
parent 102 30e0796f3ebb
child 104 58b323842de3
Bugfix for debugger not hitting the breakpoints
org.symbian.tools.wrttools.previewer/src/org/symbian/tools/wrttools/previewer/http/WebappManager.java
--- a/org.symbian.tools.wrttools.previewer/src/org/symbian/tools/wrttools/previewer/http/WebappManager.java	Fri Feb 05 11:54:28 2010 -0800
+++ b/org.symbian.tools.wrttools.previewer/src/org/symbian/tools/wrttools/previewer/http/WebappManager.java	Fri Feb 05 14:12:27 2010 -0800
@@ -125,7 +125,7 @@
 	public static String getHost() {
 		if (host == null) {
 			try {
-				host = InetAddress.getLocalHost().getHostName();
+				host = InetAddress.getLocalHost().getHostName().toLowerCase();
 			} catch (Exception e) {
 				host = "127.0.0.1";
 			}