Fix thread not updating after group creation.
This commit is contained in:
parent
02d9cbe01b
commit
c6e3c9dd35
1 changed files with 2 additions and 2 deletions
|
@ -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) {
|
||||
|
|
Loading…
Add table
Reference in a new issue