mirror of
https://github.com/aljazceru/signal-cli.git
synced 2026-01-01 05:14:23 +01:00
Handle AssertionError also when linking devices
This commit is contained in:
@@ -177,6 +177,9 @@ public class Main {
|
||||
} catch (IOException e) {
|
||||
System.err.println("Link request error: " + e.getMessage());
|
||||
return 3;
|
||||
} catch (AssertionError e) {
|
||||
handleAssertionError(e);
|
||||
return 1;
|
||||
} catch (InvalidKeyException e) {
|
||||
e.printStackTrace();
|
||||
return 2;
|
||||
@@ -202,6 +205,9 @@ public class Main {
|
||||
} catch (InvalidKeyException e) {
|
||||
e.printStackTrace();
|
||||
return 2;
|
||||
} catch (AssertionError e) {
|
||||
handleAssertionError(e);
|
||||
return 1;
|
||||
} catch (URISyntaxException e) {
|
||||
e.printStackTrace();
|
||||
return 2;
|
||||
|
||||
Reference in New Issue
Block a user