Skip to content

Commit 24e686c

Browse files
committed
Change comment "4.0.9 to 4.0.10"
1 parent 175f4d2 commit 24e686c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/android/UploadTask.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ public UploadTask(@NonNull Context context, @NonNull WorkerParameters workerPara
9393

9494
super(context, workerParams);
9595

96-
// Migrating code from 4.0.8 to 4.0.9 - Check if upload comes from another worker and does not exists in table
96+
// Migrating code from 4.0.9 to 4.0.10 - Check if upload comes from another worker and does not exists in table
9797
String oldUploadTaskId = workerParams.getInputData().getString(KEY_INPUT_ID);
9898
if (!firstMigrationFlag && oldUploadTaskId != null && AckDatabase.getInstance(getApplicationContext()).pendingUploadDao().getById(oldUploadTaskId) == null) {
9999
FileTransferBackground.logMessage("Migrating upload " + oldUploadTaskId);
@@ -142,7 +142,7 @@ public Result doWork() {
142142
return Result.retry();
143143
}
144144

145-
// Migrating code from 4.0.8 to 4.0.9 - Check if upload comes from another worker and does not exists in table
145+
// Migrating code from 4.0.9 to 4.0.10 - Check if upload comes from another worker and does not exists in table
146146
String oldUploadTaskId = getInputData().getString(KEY_INPUT_ID);
147147
if (oldUploadTaskId != null && AckDatabase.getInstance(getApplicationContext()).pendingUploadDao().getById(oldUploadTaskId) == null && firstMigrationFlag == true) {
148148
FileTransferBackground.logMessage("Migrating upload " + oldUploadTaskId);

0 commit comments

Comments
 (0)