diff --git a/embedding/android/GeckoSurfaceView.java b/embedding/android/GeckoSurfaceView.java index 43ee71633be6..e786339533f6 100644 --- a/embedding/android/GeckoSurfaceView.java +++ b/embedding/android/GeckoSurfaceView.java @@ -121,8 +121,8 @@ class GeckoSurfaceView Resources res = getResources(); - File profiles = new File(GeckoApp.sGREDir, "files/mozilla/profiles.ini"); - if (profiles.exists() == false) { + File filesDir = new File(GeckoApp.sGREDir, "files"); + if (filesDir.exists() == false) { // Just show the simple splash screen for "new profile" startup c.drawColor(res.getColor(R.color.splash_background)); Drawable drawable = res.getDrawable(R.drawable.splash);