I2P Address: [http://git.idk.i2p]

Skip to content
Snippets Groups Projects
Unverified Commit e44eeaf5 authored by zzz's avatar zzz
Browse files

Router: Don't fail to start up on unchecked family key errors

parent 17cc514b
No related branches found
No related tags found
No related merge requests found
......@@ -1069,8 +1069,9 @@ public class Router implements RouterClock.ClockShiftListener {
if (!_familyKeyCryptoFail) {
try {
_familyKeyCrypto = new FamilyKeyCrypto(_context);
} catch (GeneralSecurityException gse) {
_log.error("Failed to initialize family key crypto", gse);
} catch (Exception e) {
// Could be IllegalArgumentException from key problems
_log.error("Failed to initialize family key crypto", e);
_familyKeyCryptoFail = true;
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment