Skip to content

Commit 50c2249

Browse files
fix: Fix parsing downloadFileCount property for BoxZipDownloadStatus
1 parent d25638c commit 50c2249

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/com/box/sdk/BoxZipDownloadStatus.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ void parseJSONMember(JsonObject.Member member) {
8383
String memberName = member.getName();
8484
if (memberName.equals("total_file_count")) {
8585
this.totalFileCount = value.asInt();
86-
} else if (memberName.equals("download_file_count")) {
86+
} else if (memberName.equals("downloaded_file_count")) {
8787
this.downloadFileCount = value.asInt();
8888
} else if (memberName.equals("skipped_file_count")) {
8989
this.skippedFileCount = value.asInt();

0 commit comments

Comments
 (0)