Skip to content

Commit

Permalink
Fix import data delay
Browse files Browse the repository at this point in the history
  • Loading branch information
Melisa69 committed Jun 28, 2022
1 parent 22eb9e2 commit c9a2b05
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion sdk/config/gradle/versioning.gradle
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
ext.versions = [

// Main SDK
'sdk': '4.0.7',
'sdk': '4.0.8',

// Build time plugins
'androidgradleplugin': '3.4.2',
Expand Down
2 changes: 1 addition & 1 deletion sdk/src/main/java/me/digi/sdk/Init.kt
Original file line number Diff line number Diff line change
Expand Up @@ -519,7 +519,7 @@ class Init(

val currentSession = sessionManager.updatedSession

if (isFirstRun and (currentSession != null && sessionManager.isSessionValid()) and (activeSyncStatus != FileList.SyncStatus.COMPLETED() && activeSyncStatus != FileList.SyncStatus.PENDING() && activeSyncStatus != null)) {
if (isFirstRun and (currentSession != null && sessionManager.isSessionValid()) and (activeSyncStatus != FileList.SyncStatus.COMPLETED() && activeSyncStatus != FileList.SyncStatus.PARTIAL() && activeSyncStatus != null)) {
apiClient.makeCall(
apiClient.argonService.getFileList(currentSession?.key!!),
completion
Expand Down

0 comments on commit c9a2b05

Please sign in to comment.