Fix bug causing profile updates to unarchive threads.
This commit is contained in:
parent
6b82e6b5ac
commit
8044d2390c
1 changed files with 1 additions and 1 deletions
|
@ -673,7 +673,7 @@ public class SmsDatabase extends MessagingDatabase {
|
||||||
|
|
||||||
db.insert(TABLE_NAME, null, values);
|
db.insert(TABLE_NAME, null, values);
|
||||||
|
|
||||||
DatabaseFactory.getThreadDatabase(context).update(threadId, true);
|
DatabaseFactory.getThreadDatabase(context).update(threadId, false);
|
||||||
notifyConversationListeners(threadId);
|
notifyConversationListeners(threadId);
|
||||||
ApplicationDependencies.getJobManager().add(new TrimThreadJob(threadId));
|
ApplicationDependencies.getJobManager().add(new TrimThreadJob(threadId));
|
||||||
});
|
});
|
||||||
|
|
Loading…
Add table
Reference in a new issue