Skip to content

Commit

Permalink
This is an update on #2433
Browse files Browse the repository at this point in the history
When there is an a in position 06 it doesn't consider an i position 07
from the bibformat_bk condition
  • Loading branch information
christinach committed Sep 4, 2024
1 parent 27e85df commit 56b3d07
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion marc_to_solr/lib/format/bib_format.rb
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 56b3d07

Please sign in to comment.