Fix issue where group stories weren't syncing to linked devices.

This commit is contained in:
Greyson Parrelli 2023-02-03 12:08:21 -05:00 committed by GitHub
parent 1ed3dbb147
commit a41aed20e1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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;
}