[Title] Fixed a bug that "package manager" is not opened
authordonghee yang <donghee.yang@samsung.com>
Wed, 14 Nov 2012 07:12:35 +0000 (16:12 +0900)
committerdonghee yang <donghee.yang@samsung.com>
Wed, 14 Nov 2012 07:12:35 +0000 (16:12 +0900)
org.tizen.nativeplatform/src/org/tizen/nativeplatform/preferences/PreferencesManager.java

index da3f02e..0b5049f 100644 (file)
@@ -199,7 +199,7 @@ public class PreferencesManager {
        
        public static String getHttpProxyURL() {
                String proxyURL = getSiteProxyURL();
-               if ( proxyURL.split(":")[0].equals("http") ) {
+               if ( proxyURL != null && proxyURL.split(":")[0].equals("http") ) {
                        return proxyURL;
                }
                else {