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:
parent
9e80aa6f2a
commit
5d9519ef6d
1 changed files with 3 additions and 1 deletions
|
@ -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();
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue