fix page_size and filtered values
Test Workflow / test (push) Successful in 3s

This commit is contained in:
vladp
2025-12-26 13:52:53 +07:00
parent a2c20ae645
commit 84993dec00
2 changed files with 15 additions and 14 deletions
@@ -216,7 +216,7 @@ public class FileEntityService {
.build();
}
private String formatFileSize(long size) {
public String formatFileSize(long size) {
if (size < 1024) {
return size + " B";
} else if (size < 1024 * 1024) {