From: Chris Sharp Date: Fri, 10 Jan 2020 16:54:08 +0000 (-0500) Subject: LP#1859191 - Use correct API method for updating existing MARC records. X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=74ea98cc1f0b2e9a18d1b1e36d302a7a8f385d3f;p=evergreen%2Fpines.git LP#1859191 - Use correct API method for updating existing MARC records. Signed-off-by: Chris Sharp Signed-off-by: Bill Erickson Signed-off-by: Chris Sharp --- diff --git a/Open-ILS/src/eg2/src/app/staff/share/marc-edit/editor.component.ts b/Open-ILS/src/eg2/src/app/staff/share/marc-edit/editor.component.ts index e25734f35c..44da299df0 100644 --- a/Open-ILS/src/eg2/src/app/staff/share/marc-edit/editor.component.ts +++ b/Open-ILS/src/eg2/src/app/staff/share/marc-edit/editor.component.ts @@ -114,7 +114,7 @@ export class MarcEditorComponent implements OnInit { if (this.record.id) { // Editing an existing record - const method = 'open-ils.cat.biblio.record.marc.replace'; + const method = 'open-ils.cat.biblio.record.xml.update'; return this.net.request('open-ils.cat', method, this.auth.token(), this.record.id, xml, sourceName