Fix http scheme

This commit is contained in:
vshcherb 2014-05-29 02:52:20 +02:00
parent 11606f20f0
commit 0b1708cb17

View file

@ -152,7 +152,7 @@ public class OsMoGroupsActivity extends OsmandExpandableListActivity implements
app = (OsmandApplication) getApplication(); app = (OsmandApplication) getApplication();
osMoPlugin = OsmandPlugin.getEnabledPlugin(OsMoPlugin.class); osMoPlugin = OsmandPlugin.getEnabledPlugin(OsMoPlugin.class);
if(getIntent() != null) { if(getIntent() != null) {
if("osmo".equals(getIntent().getScheme())) { if("http".equals(getIntent().getScheme())) {
new OsMoIntentHandler(app, osMoPlugin).execute(getIntent()); new OsMoIntentHandler(app, osMoPlugin).execute(getIntent());
} }
} }