feat: lower debounce period

This commit is contained in:
jubb 2021-04-01 11:51:39 +11:00
parent 5c87cef26a
commit 20b5da18fe

View File

@ -41,7 +41,7 @@ public abstract class Database {
public Database(Context context, SQLCipherOpenHelper databaseHelper) {
this.context = context;
this.databaseHelper = databaseHelper;
this.threadNotificationDebouncer = new Debouncer(ApplicationContext.getInstance(context).getThreadNotificationHandler(), 1000);
this.threadNotificationDebouncer = new Debouncer(ApplicationContext.getInstance(context).getThreadNotificationHandler(), 100);
}
protected void notifyConversationListeners(Set<Long> threadIds) {