Skip to content

Commit

Permalink
fix: bug in archive_size calculation for reception phase
Browse files Browse the repository at this point in the history
  • Loading branch information
Nolife999 committed Oct 28, 2024
1 parent 09c1f78 commit 529b41c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ private void insertArchivesIntoTemporaryTable(File[] archives) throws ArcExcepti
query.build(SQL.INSERT_INTO, ViewEnum.ALIAS_TABLE, SQL.VALUES, "("
, query.quoteText(i + ""), SQL.CAST_OPERATOR, TypeEnum.BIGINT, "," //
, query.quoteText(f.getName()), "," //
, query.quoteText(f.getTotalSpace() + ""), SQL.CAST_OPERATOR, TypeEnum.BIGINT, "," //
, query.quoteText(f.length() + ""), SQL.CAST_OPERATOR, TypeEnum.BIGINT, "," //
, query.quoteText(f.lastModified() + ""), SQL.CAST_OPERATOR, TypeEnum.BIGINT //
, ")", SQL.END_QUERY);

Expand Down

0 comments on commit 529b41c

Please sign in to comment.