Fix issue with syncing remote deletes in note to self.
This commit is contained in:
parent
44c393f11a
commit
59dd72b5c0
1 changed files with 5 additions and 0 deletions
|
@ -37,6 +37,7 @@ import org.whispersystems.signalservice.api.push.exceptions.ServerRejectedExcept
|
|||
import java.io.IOException;
|
||||
import java.util.List;
|
||||
import java.util.concurrent.TimeUnit;
|
||||
import java.util.stream.Collectors;
|
||||
|
||||
public class RemoteDeleteSendJob extends BaseJob {
|
||||
|
||||
|
@ -224,6 +225,10 @@ public class RemoteDeleteSendJob extends BaseJob {
|
|||
isForStory,
|
||||
null);
|
||||
|
||||
if (conversationRecipient.isSelf()) {
|
||||
ApplicationDependencies.getSignalServiceMessageSender().sendSyncMessage(dataMessage);
|
||||
}
|
||||
|
||||
return GroupSendJobHelper.getCompletedSends(destinations, results);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue