]> nmode's Git Repositories - signal-cli/blobdiff - src/main/java/org/asamk/signal/App.java
Add missing return to app command handling
[signal-cli] / src / main / java / org / asamk / signal / App.java
index fdd88e7c47282a7a8c82d9bd4fea413c54a57940..9ac4b190813aa0480e3538cab98a44dfacfe98dd 100644 (file)
@@ -190,6 +190,7 @@ public class App {
 
         if (command instanceof LocalCommand localCommand) {
             handleLocalCommand(localCommand, account, signalAccountFiles, commandHandler);
+            return;
         }
 
         throw new UserErrorException("Command only works in multi-account mode");