formula_versions: fix erroneous :stable in version_attributes_map

This commit is contained in:
JCount 2016-11-13 22:27:45 -05:00
parent fc3d586584
commit cfdbe9c645

View File

@ -77,7 +77,7 @@ class FormulaVersions
end end
next unless f.devel next unless f.devel
map[:devel] ||= {} map[:devel] ||= {}
map[:stable][f.devel.version] ||= [] map[:devel][f.devel.version] ||= []
map[:devel][f.devel.version] << f.send(attribute) map[:devel][f.devel.version] << f.send(attribute)
end end
end end