mirror of
https://github.com/AsamK/signal-cli
synced 2025-08-29 18:40:39 +00:00
Implement reacting to stories
This commit is contained in:
parent
207764e0be
commit
fea19c9e20
9 changed files with 33 additions and 10 deletions
|
@ -287,7 +287,8 @@ public class DbusSignalImpl implements Signal {
|
|||
targetSentTimestamp,
|
||||
getSingleRecipientIdentifiers(recipients, m.getSelfNumber()).stream()
|
||||
.map(RecipientIdentifier.class::cast)
|
||||
.collect(Collectors.toSet()));
|
||||
.collect(Collectors.toSet()),
|
||||
false);
|
||||
checkSendMessageResults(results);
|
||||
return results.timestamp();
|
||||
} catch (IOException e) {
|
||||
|
@ -485,7 +486,8 @@ public class DbusSignalImpl implements Signal {
|
|||
remove,
|
||||
getSingleRecipientIdentifier(targetAuthor, m.getSelfNumber()),
|
||||
targetSentTimestamp,
|
||||
Set.of(getGroupRecipientIdentifier(groupId)));
|
||||
Set.of(getGroupRecipientIdentifier(groupId)),
|
||||
false);
|
||||
checkSendMessageResults(results);
|
||||
return results.timestamp();
|
||||
} catch (IOException e) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue