Delay crypt test a bit at startup

This commit is contained in:
Manfred Karrer 2016-03-29 22:17:15 +02:00
parent ac80f3510c
commit 4d1a07c531

View file

@ -494,7 +494,9 @@ public class MainViewModel implements ViewModel {
}
};
checkCryptoThread.start();
// Delay a bit the test, there was one bug report (Key length not 128//192/256 bits) where the crypto test failed.
// TODO investigate
UserThread.runAfter(() -> checkCryptoThread.start(), 3);
}