Fix bug causing profile updates to unarchive threads.

master
Cody Henthorne 2020-07-27 13:32:15 -04:00
parent 6b82e6b5ac
commit 8044d2390c
1 changed files with 1 additions and 1 deletions

View File

@ -673,7 +673,7 @@ public class SmsDatabase extends MessagingDatabase {
db.insert(TABLE_NAME, null, values);
DatabaseFactory.getThreadDatabase(context).update(threadId, true);
DatabaseFactory.getThreadDatabase(context).update(threadId, false);
notifyConversationListeners(threadId);
ApplicationDependencies.getJobManager().add(new TrimThreadJob(threadId));
});