Fix #3243
This commit is contained in:
parent
5f0add31a3
commit
f78bb712f8
1 changed files with 5 additions and 1 deletions
|
@ -95,7 +95,11 @@ public class PluginActivity extends OsmandActionBarActivity {
|
|||
getButton.setOnClickListener(new View.OnClickListener() {
|
||||
@Override
|
||||
public void onClick(View v) {
|
||||
startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse(plugin.getInstallURL())));
|
||||
try {
|
||||
startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse(plugin.getInstallURL())));
|
||||
} catch (Exception e) {
|
||||
//ignored
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
|
|
Loading…
Reference in a new issue