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

Commit

Permalink
Fix upload colissions
Browse files Browse the repository at this point in the history
  • Loading branch information
davigonz committed Sep 3, 2018
1 parent 2e69dba commit ab2cd1a
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -56,9 +56,9 @@ public class ChunkedUploadRemoteFileOperation extends UploadRemoteFileOperation
public static final long CHUNK_SIZE = 1024000;
private static final String TAG = ChunkedUploadRemoteFileOperation.class.getSimpleName();

private long mTransferId;
private String mTransferId;

public ChunkedUploadRemoteFileOperation(long transferId, String localPath, String remotePath, String mimeType,
public ChunkedUploadRemoteFileOperation(String transferId, String localPath, String remotePath, String mimeType,
String requiredEtag, String fileLastModifTimestamp) {
super(localPath, remotePath, mimeType, requiredEtag, fileLastModifTimestamp);
mTransferId = transferId;
Expand Down

0 comments on commit ab2cd1a

Please sign in to comment.