$format = 'UNIMARCAUTH';
}
my $record = MARC::Record->new_from_xml($self->marcxml, $self->encoding, $format);
my $encoding = $self->encoding eq 'MARC-8' ? 'UTF-8' : $self->encoding; # MARC-8 is not a valid encoding in Koha
my $record = MARC::Record->new_from_xml($self->marcxml, $encoding, $format);
return $record;
-