Add missing return to app command handling

This commit is contained in:
AsamK 2023-06-11 17:17:04 +02:00
parent aad4b53524
commit da25b2a763

View 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");