Skip to content

Commit

Permalink
Fix formatting errors
Browse files Browse the repository at this point in the history
  • Loading branch information
brendan-oconnell committed Mar 11, 2024
1 parent 4e6cb68 commit 24906fb
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions thoth-export-server/src/marc21/marc21record_thoth.rs
Original file line number Diff line number Diff line change
Expand Up @@ -634,7 +634,6 @@ impl Marc21Field<Marc21RecordThoth> for WorkIssues {
.and_then(|f| {
f.add_subfield(b"v", format!("vol. {}.", self.issue_ordinal).as_bytes())
})
.and_then(|f| f.add_subfield(b"x", self.series.issn_digital.as_deref().unwrap_or_default().as_bytes()))
.and_then(|f| {
f.add_subfield(
b"x",
Expand All @@ -656,8 +655,8 @@ impl Marc21Field<Marc21RecordThoth> for WorkIssues {
)
})
.and_then(|f| builder.add_field(f))?;
}
Ok(())
}
Ok(())
}
}

Expand Down

0 comments on commit 24906fb

Please sign in to comment.