Uri decode search query

This commit is contained in:
M66B 2021-08-01 10:44:41 +02:00
parent e919c9be4a
commit f16a57a607
1 changed files with 1 additions and 1 deletions

View File

@ -40,7 +40,7 @@ public class ActivitySearch extends ActivityBase {
if (uri == null || !SEARCH_SCHEME.equals(uri.getScheme()))
query = getIntent().getCharSequenceExtra(Intent.EXTRA_PROCESS_TEXT);
else
query = uri.toString().substring(SEARCH_SCHEME.length() + 1);
query = Uri.decode(uri.toString().substring(SEARCH_SCHEME.length() + 1));
Log.i("External search query=" + query);
Intent view = new Intent(this, ActivityView.class);