mirror of
https://github.com/AsamK/signal-cli
synced 2025-08-29 18:40:39 +00:00
Implement unregister command for jsonrpc and dbus daemon
This commit is contained in:
parent
b78573021d
commit
c73c58723c
11 changed files with 98 additions and 9 deletions
|
@ -138,6 +138,24 @@ public class DbusSignalImpl implements Signal {
|
|||
|
||||
}
|
||||
|
||||
@Override
|
||||
public void unregister() throws Error.Failure {
|
||||
try {
|
||||
m.unregister();
|
||||
} catch (IOException e) {
|
||||
throw new Error.Failure("Failed to unregister: " + e.getMessage());
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
public void deleteAccount() throws Error.Failure {
|
||||
try {
|
||||
m.deleteAccount();
|
||||
} catch (IOException e) {
|
||||
throw new Error.Failure("Failed to delete account: " + e.getMessage());
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
public void addDevice(String uri) {
|
||||
try {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue