Skip to content

Commit

Permalink
Fix: Education accidental wipe on volunteer fetch
Browse files Browse the repository at this point in the history
- Typo: Was resetting `.education` instead of `volunteer`, when about to
fetch new volunteer entries
- Closes #60
  • Loading branch information
joshuatz committed Nov 14, 2021
1 parent 632c032 commit 194e6f0
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 @@ -899,7 +899,7 @@ window.LinkedinToResumeJson = (() => {
}
if (profileParserResult.sections.volunteer === 'incomplete') {
_outputJsonLegacy.volunteer = [];
_outputJsonStable.education = [];
_outputJsonStable.volunteer = [];
await this.parseViaInternalApiVolunteer();
}

Expand Down

0 comments on commit 194e6f0

Please sign in to comment.