Skip to content

Commit

Permalink
remove end and start time when sending response time when stopping up…
Browse files Browse the repository at this point in the history
…load
  • Loading branch information
parveshneedhoo committed Nov 1, 2024
1 parent 145b0da commit e6d4c88
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/android/UploadTask.java
Original file line number Diff line number Diff line change
Expand Up @@ -241,8 +241,6 @@ public Result doWork() {
.putBoolean(KEY_OUTPUT_IS_ERROR, true)
.putString(KEY_OUTPUT_FAILURE_REASON, "User cancelled")
.putBoolean(KEY_OUTPUT_FAILURE_CANCELED, true)
.putLong(KEY_OUTPUT_UPLOAD_START_TIME, startTime)
.putLong(KEY_OUTPUT_UPLOAD_FINISH_TIME, endTime)
.build();
AckDatabase.getInstance(getApplicationContext()).uploadEventDao().insert(new UploadEvent(id, data));
return Result.success(data);
Expand Down

0 comments on commit e6d4c88

Please sign in to comment.