mirror of
https://github.com/AsamK/signal-cli
synced 2025-08-29 10:30:38 +00:00
Removing linked devices only works on the primary device
This commit is contained in:
parent
b76964f219
commit
22ac3cb50f
4 changed files with 11 additions and 2 deletions
|
@ -5,7 +5,9 @@ import net.sourceforge.argparse4j.inf.Subparser;
|
|||
|
||||
import org.asamk.signal.commands.exceptions.CommandException;
|
||||
import org.asamk.signal.commands.exceptions.IOErrorException;
|
||||
import org.asamk.signal.commands.exceptions.UserErrorException;
|
||||
import org.asamk.signal.manager.Manager;
|
||||
import org.asamk.signal.manager.api.NotPrimaryDeviceException;
|
||||
import org.asamk.signal.output.OutputWriter;
|
||||
|
||||
import java.io.IOException;
|
||||
|
@ -33,6 +35,8 @@ public class RemoveDeviceCommand implements JsonRpcLocalCommand {
|
|||
try {
|
||||
final var deviceId = ns.getInt("device-id");
|
||||
m.removeLinkedDevices(deviceId);
|
||||
} catch (NotPrimaryDeviceException e) {
|
||||
throw new UserErrorException("This command doesn't work on linked devices.");
|
||||
} catch (IOException e) {
|
||||
throw new IOErrorException("Error while removing device: " + e.getMessage(), e);
|
||||
}
|
||||
|
|
|
@ -1177,6 +1177,8 @@ public class DbusSignalImpl implements Signal, AutoCloseable {
|
|||
try {
|
||||
m.removeLinkedDevices(device.id());
|
||||
updateDevices();
|
||||
} catch (NotPrimaryDeviceException e) {
|
||||
throw new Error.Failure("This command doesn't work on linked devices.");
|
||||
} catch (IOException e) {
|
||||
throw new Error.Failure(e.getMessage());
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue