Clear authentication when PIN too

This commit is contained in:
M66B 2020-07-28 21:10:09 +02:00
parent 9e80aa6f2a
commit 5d9519ef6d
1 changed files with 3 additions and 1 deletions

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();
}