feat: lower debounce period

pull/486/head
jubb 4 years ago
parent 5c87cef26a
commit 20b5da18fe

@ -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) {

Loading…
Cancel
Save