Explorar el Código

Catch UnlockCancelled exception during unlock of health check

Armin Schrenk hace 3 años
padre
commit
d2a3ce2474
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      src/main/java/org/cryptomator/ui/health/StartController.java

+ 1 - 1
src/main/java/org/cryptomator/ui/health/StartController.java

@@ -74,7 +74,7 @@ public class StartController implements FxController {
 		assert unverifiedVaultConfig.get() != null;
 		try {
 			keyLoadingStrategy.use(this::verifyVaultConfig);
-		} catch (VaultConfigLoadException e) {
+		} catch (VaultConfigLoadException | UnlockCancelledException e) {
 			throw new LoadingFailedException(e);
 		}
 	}