1
0
Fork 0
mirror of https://github.com/M66B/FairEmail.git synced 2025-02-23 14:41:08 +00:00

Clear authentication when PIN too

This commit is contained in:
M66B 2020-07-28 21:10:09 +02:00
parent 9e80aa6f2a
commit 5d9519ef6d

View file

@ -29,6 +29,7 @@ import android.content.res.Configuration;
import android.os.Build;
import android.os.Bundle;
import android.os.PowerManager;
import android.text.TextUtils;
import android.view.KeyEvent;
import android.view.MenuItem;
import android.view.View;
@ -345,7 +346,8 @@ abstract class ActivityBase extends AppCompatActivity implements SharedPreferenc
Log.i("Stop with screen off");
SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(this);
boolean biometrics = prefs.getBoolean("biometrics", false);
if (biometrics) {
String pin = prefs.getString("pin", null);
if (biometrics || !TextUtils.isEmpty(pin)) {
Helper.clearAuthentication(this);
finish();
}