fix the new lines that were in the fixed_in

This commit is contained in:
Brendan McDevitt 2022-09-28 20:51:41 -05:00
parent 43429f643f
commit e8c3f7745a

View file

@ -69,7 +69,7 @@ class MozillaSecurityAdvisoryScraper
announced = summary[0].text
impact = summary[1].text
products = summary[2].text
fixed_in = summary[3].text
fixed_in = summary[3].text.gsub("\n", "").strip
cve_nodes = parse_advisory_cves(advisory_doc)
cves = cve_nodes.map { | cve_node | cve_data_hash(cve_node) }