From 24906fbb9276f467c2039aea25566f65840f3baf Mon Sep 17 00:00:00 2001 From: Brendan OConnell Date: Mon, 11 Mar 2024 11:27:26 +0100 Subject: [PATCH] Fix formatting errors --- thoth-export-server/src/marc21/marc21record_thoth.rs | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/thoth-export-server/src/marc21/marc21record_thoth.rs b/thoth-export-server/src/marc21/marc21record_thoth.rs index 3dc8c350..71b32ca1 100644 --- a/thoth-export-server/src/marc21/marc21record_thoth.rs +++ b/thoth-export-server/src/marc21/marc21record_thoth.rs @@ -634,7 +634,6 @@ impl Marc21Field 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", @@ -656,8 +655,8 @@ impl Marc21Field for WorkIssues { ) }) .and_then(|f| builder.add_field(f))?; - } - Ok(()) + } + Ok(()) } }