We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2592fa9 commit 8bc3742Copy full SHA for 8bc3742
FlowCrypt/src/main/java/com/flowcrypt/email/api/email/sync/EmailSyncManager.java
@@ -76,11 +76,11 @@ public EmailSyncManager(AccountDao accountDao) {
76
/**
77
* Start a synchronization.
78
*
79
- * @param isNeedReset true if need a reconnect, false otherwise.
+ * @param isResetNeeded true if need a reconnect, false otherwise.
80
*/
81
- public void beginSync(boolean isNeedReset) {
82
- Log.d(TAG, "beginSync | isNeedReset = " + isNeedReset);
83
- if (isNeedReset) {
+ public void beginSync(boolean isResetNeeded) {
+ Log.d(TAG, "beginSync | isResetNeeded = " + isResetNeeded);
+ if (isResetNeeded) {
84
resetSync();
85
}
86
0 commit comments