1
0
Fork 0
mirror of https://github.com/M66B/FairEmail.git synced 2025-01-03 21:55:13 +00:00

Reduced logging

This commit is contained in:
M66B 2021-05-02 18:33:48 +02:00
parent 19e934db16
commit b0f2fb162f

View file

@ -477,8 +477,11 @@ public class Helper {
PackageManager pm = context.getPackageManager();
pm.getPackageInfo("com.android.vending", 0);
hasPlayStore = true;
} catch (PackageManager.NameNotFoundException ex) {
Log.i(ex);
hasPlayStore = false;
} catch (Throwable ex) {
Log.w(ex);
Log.e(ex);
hasPlayStore = false;
}
return hasPlayStore;