Skip to content

Commit

Permalink
Add missing return to app command handling
Browse files Browse the repository at this point in the history
  • Loading branch information
AsamK committed Jun 11, 2023
1 parent aad4b53 commit da25b2a
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/main/java/org/asamk/signal/App.java
Original file line number Diff line number Diff line change
Expand Up @@ -190,6 +190,7 @@ private void handleCommand(

if (command instanceof LocalCommand localCommand) {
handleLocalCommand(localCommand, account, signalAccountFiles, commandHandler);
return;
}

throw new UserErrorException("Command only works in multi-account mode");
Expand Down

0 comments on commit da25b2a

Please sign in to comment.