oddb2xml 1.5.7 → 1.5.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/History.txt +4 -0
- data/lib/oddb2xml/builder.rb +3 -2
- data/lib/oddb2xml/version.rb +1 -1
- metadata +1 -1
data/History.txt
CHANGED
data/lib/oddb2xml/builder.rb
CHANGED
|
@@ -716,8 +716,9 @@ module Oddb2xml
|
|
|
716
716
|
) {
|
|
717
717
|
length = 0
|
|
718
718
|
%w[de fr].each do |lang|
|
|
719
|
-
|
|
720
|
-
|
|
719
|
+
infos = @infos[lang].uniq {|i| i[:monid] }
|
|
720
|
+
length += infos.length
|
|
721
|
+
infos.each do |info|
|
|
721
722
|
xml.KMP(
|
|
722
723
|
'MONTYPE' => 'fi', # only
|
|
723
724
|
'LANG' => lang.upcase,
|
data/lib/oddb2xml/version.rb
CHANGED