Convert string to uri

This commit is contained in:
Martin Fietz 2017-04-10 21:19:25 +02:00
parent d555668d10
commit 77e89b5786

View File

@ -6,7 +6,9 @@ import android.os.Bundle;
import de.danoeh.antennapod.core.preferences.UserPreferences; import de.danoeh.antennapod.core.preferences.UserPreferences;
/** Lets the user start the OPML-import process. */ /**
* Lets the user start the OPML-import process.
*/
public class OpmlImportFromIntentActivity extends OpmlImportBaseActivity { public class OpmlImportFromIntentActivity extends OpmlImportBaseActivity {
private static final String TAG = "OpmlImportFromIntentAct"; private static final String TAG = "OpmlImportFromIntentAct";
@ -19,12 +21,10 @@ public class OpmlImportFromIntentActivity extends OpmlImportBaseActivity {
getSupportActionBar().setDisplayHomeAsUpEnabled(true); getSupportActionBar().setDisplayHomeAsUpEnabled(true);
Uri uri = getIntent().getData(); Uri uri = getIntent().getData();
if(uri != null) { if (uri != null && uri.toString().startsWith("/")) {
if(uri.toString().startsWith("/")) {
uri = Uri.parse("file://" + uri.toString()); uri = Uri.parse("file://" + uri.toString());
}
} else { } else {
uri = getIntent().getStringExtra(Intent.EXTRA_TEXT); uri = Uri.parse(getIntent().getStringExtra(Intent.EXTRA_TEXT));
} }
importUri(uri); importUri(uri);
} }