]> gitweb.stoutner.com Git - PrivacyBrowserAndroid.git/commitdiff
Convert full intent Uri to formattedUrlString.
authorSoren Stoutner <soren@stoutner.com>
Sat, 26 Sep 2015 20:04:21 +0000 (13:04 -0700)
committerSoren Stoutner <soren@stoutner.com>
Sat, 26 Sep 2015 20:04:21 +0000 (13:04 -0700)
app/src/main/java/com/stoutner/privacybrowser/Webview.java

index abbc170fb6a30061938a62d5a07529c51a34f4ba..a0455bc9394b9c03399968b243f99bee61f787d1 100644 (file)
@@ -74,18 +74,9 @@ public class Webview extends AppCompatActivity {
         final Intent intent = getIntent();
 
         if (intent.getData() != null) {
-            // Get the intent data.
+            // Get the intent data and convert it to a string.
             final Uri intentUriData = intent.getData();
-
-            // Try to parse the intent data and store it in urlData.
-            URL urlData = null;
-            try {
-                urlData = new URL(intentUriData.getScheme(), intentUriData.getHost(), intentUriData.getPath());
-            } catch (Exception e) {
-                e.printStackTrace();
-            }
-
-            Webview.formattedUrlString = urlData.toString();
+            Webview.formattedUrlString = intentUriData.toString();
         }
 
         // If formattedUrlString is null assign the homepage to it.