mirror of
https://github.com/AsamK/signal-cli
synced 2025-08-29 10:30:38 +00:00
Handle AssertionError also when linking devices
This commit is contained in:
parent
82cecfff85
commit
197619f1c0
1 changed files with 6 additions and 0 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue