mirror of
https://github.com/AsamK/signal-cli
synced 2025-08-29 18:40:39 +00:00
Ignore broken user data again for multi account commands
This commit is contained in:
parent
be4b683a41
commit
1bf848cde1
1 changed files with 5 additions and 1 deletions
|
@ -214,7 +214,11 @@ public class App {
|
|||
) throws CommandException {
|
||||
final var managers = new ArrayList<Manager>();
|
||||
for (String u : usernames) {
|
||||
managers.add(loadManager(u, dataPath, serviceEnvironment));
|
||||
try {
|
||||
managers.add(loadManager(u, dataPath, serviceEnvironment));
|
||||
} catch (CommandException e) {
|
||||
logger.warn("Ignoring {}: {}", u, e.getMessage());
|
||||
}
|
||||
}
|
||||
|
||||
command.handleCommand(ns, managers);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue