mirror of
https://github.com/AsamK/signal-cli
synced 2025-08-29 18:40:39 +00:00
Fix remote delete in dbus receive
This commit is contained in:
parent
dc8abd0032
commit
54d8ee2a40
1 changed files with 1 additions and 1 deletions
|
@ -145,7 +145,7 @@ public class DbusReceiveMessageHandler implements Manager.ReceiveMessageHandler
|
||||||
}
|
}
|
||||||
if (message.remoteDeleteId().isPresent()) {
|
if (message.remoteDeleteId().isPresent()) {
|
||||||
extras.put("remoteDelete",
|
extras.put("remoteDelete",
|
||||||
new Variant<>(Map.of("timestamp", new Variant<>(message.remoteDeleteId())), "a{sv}"));
|
new Variant<>(Map.of("timestamp", new Variant<>(message.remoteDeleteId().get())), "a{sv}"));
|
||||||
}
|
}
|
||||||
if (message.sticker().isPresent()) {
|
if (message.sticker().isPresent()) {
|
||||||
final var sticker = message.sticker().get();
|
final var sticker = message.sticker().get();
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue