Skip to content

Commit

Permalink
Merge pull request #13 from Osmos-io/try-fix-harman-issue
Browse files Browse the repository at this point in the history
OSM-9171
  • Loading branch information
tzilist authored Mar 28, 2024
2 parents fbf97bd + 9546125 commit 8f32d20
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/xlsx/cells_reader.rs
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,7 @@ fn read_v<'s>(
match get_attribute(c_element.attributes(), QName(b"t"))? {
Some(b"s") => {
// shared string
let idx: usize = v.parse()?;
let idx: usize = v.trim().parse()?;
Ok(DataRef::SharedString(&strings[idx]))
}
Some(b"b") => {
Expand Down

0 comments on commit 8f32d20

Please sign in to comment.