# HG changeset patch # User Eugene Ostroukhov # Date 1265407947 28800 # Node ID ef9f02ee3266dd40255f226fb427253cf799042f # Parent 30e0796f3ebb8d32ec33d5a9d44a0a1246410974 Bugfix for debugger not hitting the breakpoints diff -r 30e0796f3ebb -r ef9f02ee3266 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"; }