Fix issue where group stories weren't syncing to linked devices.
This commit is contained in:
parent
1ed3dbb147
commit
a41aed20e1
1 changed files with 2 additions and 2 deletions
|
@ -279,8 +279,8 @@ public class SignalServiceMessageSender {
|
|||
Set<SignalServiceStoryMessageRecipient> manifest)
|
||||
throws IOException, UntrustedIdentityException
|
||||
{
|
||||
if (manifest.isEmpty()) {
|
||||
Log.w(TAG, "Refusing to send sync message for empty manifest.");
|
||||
if (manifest.isEmpty() && !message.getGroupContext().isPresent()) {
|
||||
Log.w(TAG, "Refusing to send sync message for empty manifest in non-group story.");
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue