Removing linked devices only works on the primary device

This commit is contained in:
AsamK 2024-02-25 18:12:36 +01:00
parent b76964f219
commit 22ac3cb50f
4 changed files with 11 additions and 2 deletions

View file

@ -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());
}