Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Delegate fetch
  • Loading branch information
ja573 committed Apr 15, 2026
commit 745dd020661e8a8b94d0752e11f10a9d583bd769
6 changes: 3 additions & 3 deletions thoth-oai-server/src/service.rs
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ impl OaiService {
b"record",
"MARCXML",
)
.await
.await
}

pub(crate) async fn get_oai_dc_record(&self, work_id: Uuid) -> ThothResult<String> {
Expand All @@ -162,7 +162,7 @@ impl OaiService {
b"dc",
"Dublin Core",
)
.await
.await
}

pub(crate) async fn get_oai_openaire_record(&self, work_id: Uuid) -> ThothResult<String> {
Expand All @@ -173,7 +173,7 @@ impl OaiService {
b"resource",
"OpenAIRE",
)
.await
.await
}

pub(crate) async fn has_metadata_dissemination(
Expand Down
Loading