Fix thread not updating after group creation.

This commit is contained in:
Cody Henthorne 2022-10-10 15:43:36 -04:00
parent 02d9cbe01b
commit c6e3c9dd35

View file

@ -274,7 +274,7 @@ public class MessageSender {
sendMediaMessage(context, recipient, forceSms, messageId, Collections.emptyList());
onMessageSent();
threadDatabase.update(threadId, true);
threadDatabase.update(allocatedThreadId, true);
return allocatedThreadId;
} catch (MmsException e) {
@ -318,7 +318,7 @@ public class MessageSender {
sendMediaMessage(context, recipient, false, messageId, jobIds);
onMessageSent();
threadDatabase.update(threadId, true);
threadDatabase.update(allocatedThreadId, true);
return allocatedThreadId;
} catch (MmsException e) {