mirror of
https://github.com/Kunzisoft/KeePassDX.git
synced 2025-12-04 15:49:33 +01:00
Solve fingerprint null pointer exception issue
This commit is contained in:
@@ -269,8 +269,10 @@ public class FingerPrintHelper {
|
||||
} catch (KeyStoreException
|
||||
| CertificateException
|
||||
| NoSuchAlgorithmException
|
||||
| IOException e) {
|
||||
fingerPrintCallback.onFingerPrintException(e);
|
||||
| IOException
|
||||
| NullPointerException e) {
|
||||
if (fingerPrintCallback != null)
|
||||
fingerPrintCallback.onFingerPrintException(e);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user