Skip to content
This repository has been archived by the owner on Oct 19, 2022. It is now read-only.

Commit

Permalink
Update core + update background fetch logic
Browse files Browse the repository at this point in the history
  • Loading branch information
Boehrsi committed May 18, 2020
1 parent 4726055 commit b18557c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,6 @@

package com.openxchange.deltachatcore.handlers;

import android.util.Log;

import com.b44t.messenger.DcChat;
import com.b44t.messenger.DcChatlist;
import com.b44t.messenger.DcContact;
Expand Down Expand Up @@ -996,8 +994,10 @@ private void setChatName(MethodCall methodCall, MethodChannel.Result result) {
}

private void interruptIdleForIncomingMessages(MethodChannel.Result result) {
dcContext.interruptImapIdle();
dcContext.interruptMvboxIdle();
dcContext.performImapJobs();
dcContext.performImapFetch();
dcContext.performMvboxJobs();
dcContext.performMvboxFetch();
result.success(null);
}

Expand Down
1 change: 0 additions & 1 deletion example/android/gradle.properties
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
org.gradle.jvmargs=-Xmx1536M
android.useAndroidX=true
android.enableJetifier=true
android.enableR8=true

0 comments on commit b18557c

Please sign in to comment.