Loading src/com/owncloud/android/lib/resources/files/ChunkedUploadRemoteFileOperation.java +7 −2 Original line number Diff line number Diff line Loading @@ -161,8 +161,13 @@ public class ChunkedUploadRemoteFileOperation extends UploadRemoteFileOperation } } finally { if (this.isSuccess(status)) { SharedPreferences.Editor editor = sharedPref.edit(); editor.remove(chunkId).apply(); } else { SharedPreferences.Editor editor = sharedPref.edit(); editor.putStringSet(chunkId, successfulChunks).apply(); } if (channel != null) channel.close(); Loading Loading
src/com/owncloud/android/lib/resources/files/ChunkedUploadRemoteFileOperation.java +7 −2 Original line number Diff line number Diff line Loading @@ -161,8 +161,13 @@ public class ChunkedUploadRemoteFileOperation extends UploadRemoteFileOperation } } finally { if (this.isSuccess(status)) { SharedPreferences.Editor editor = sharedPref.edit(); editor.remove(chunkId).apply(); } else { SharedPreferences.Editor editor = sharedPref.edit(); editor.putStringSet(chunkId, successfulChunks).apply(); } if (channel != null) channel.close(); Loading