Skip to content

Commit

Permalink
fix: f size
Browse files Browse the repository at this point in the history
  • Loading branch information
Marko Grizelj committed Nov 12, 2024
1 parent a94a76c commit 3f1f9aa
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/rand.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1207,7 +1207,7 @@ pub async fn read_objects(path: &PathBuf) -> anyhow::Result<Objects> {
}

let doesnt_fit = files.iter().find(|(lang, talk_file)| {
let csize = talk_file.file.file_size();
let csize = talk_file.file.file_size_text();

let generic_text = &lang.to_received_item_generic();

Expand Down
2 changes: 1 addition & 1 deletion src/rand/maps.rs
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,7 @@ fn item_boxes(
[nv as usize]
.clone();

let csize = text_file.file.file_size();
let csize = text_file.file.file_size_text();

let received_item_text = lang.to_received_item(item_name);

Expand Down

0 comments on commit 3f1f9aa

Please sign in to comment.