зеркало из https://github.com/mozilla/gecko-dev.git
Bug 695595 - Fix bug introduced in f8179ee6846a [r=mfinkle]
This commit is contained in:
Родитель
b4de11a0ea
Коммит
3d1008c0f8
|
@ -78,7 +78,7 @@ public class GeckoBookmarks extends ListActivity {
|
|||
mCursor.moveToPosition(position);
|
||||
String spec = mCursor.getString(mCursor.getColumnIndex(Browser.BookmarkColumns.URL));
|
||||
Log.i(LOG_NAME, "clicked: " + spec);
|
||||
Intent intent = new Intent(this, GeckoApp.class);
|
||||
Intent intent = new Intent(this, GeckoApp.mAppContext.getClass());
|
||||
intent.setAction(Intent.ACTION_VIEW);
|
||||
intent.setData(Uri.parse(spec));
|
||||
startActivity(intent);
|
||||
|
|
Загрузка…
Ссылка в новой задаче