Skip to content

Commit

Permalink
Fix: Ensure certificates in stable schema
Browse files Browse the repository at this point in the history
 - With the transition to `v1` of the schema, certificates did not get
 updated to be included in the `stable` / v1 schema by default. Fixed.
 - Fix for #59
  • Loading branch information
joshuatz committed Nov 8, 2021
1 parent 35cba20 commit 741c950
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -655,7 +655,7 @@ window.LinkedinToResumeJson = (() => {
certificates.push(certObj);
});
resultSummary.sections.certificates = certificates.length ? 'success' : 'empty';
_outputJsonBetaPartial.certificates = certificates;
_outputJsonStable.certificates = certificates;

// Parse skills
/** @type {string[]} */
Expand Down

0 comments on commit 741c950

Please sign in to comment.