From 56b3d073e2519527a70cc764e533b9fcc1172789 Mon Sep 17 00:00:00 2001 From: Christina Chortaria Date: Wed, 4 Sep 2024 08:04:32 -0400 Subject: [PATCH] This is an update on #2433 When there is an a in position 06 it doesn't consider an i position 07 from the bibformat_bk condition --- marc_to_solr/lib/format/bib_format.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/marc_to_solr/lib/format/bib_format.rb b/marc_to_solr/lib/format/bib_format.rb index 90895cb4..4175a761 100644 --- a/marc_to_solr/lib/format/bib_format.rb +++ b/marc_to_solr/lib/format/bib_format.rb @@ -36,7 +36,7 @@ def determine_bib_code(type, lev) end def bibformat_bk(type, lev) - (type == 't') || ((type == 'a') && %w[a b c d i m].include?(lev)) + (type == 't') || ((type == 'a') && %w[a b c d m].include?(lev)) end def bibformat_db(type, lev)