From 3c166a21a034d0c81c0c7d5667c8436c2bc616d1 Mon Sep 17 00:00:00 2001 From: Daniele Rapagnani Date: Sun, 14 Feb 2016 22:10:30 +0100 Subject: [PATCH] Removed the forced private option from the CONVERT verb as it is now the default behaviour --- dist/verbs/convert.js | 2 +- src/verbs/convert.coffee | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/dist/verbs/convert.js b/dist/verbs/convert.js index d15f7f8..361255a 100644 --- a/dist/verbs/convert.js +++ b/dist/verbs/convert.js @@ -94,7 +94,7 @@ Implementation of the 'convert' verb for HackMyResume. format: null, objectify: true, inner: { - "private": true + "private": false } }); if (rinfo.fluenterror) { diff --git a/src/verbs/convert.coffee b/src/verbs/convert.coffee index 2261ccf..a88a8d7 100644 --- a/src/verbs/convert.coffee +++ b/src/verbs/convert.coffee @@ -61,7 +61,7 @@ _convert = ( srcs, dst, opts ) -> ###* Private workhorse method. Convert a single resume. ### _convertOne = (src, dst, idx) -> # Load the resume - rinfo = ResumeFactory.loadOne src, format: null, objectify: true, inner: { private: true } + rinfo = ResumeFactory.loadOne src, format: null, objectify: true # If a load error occurs, report it and move on to the next file (if any) if rinfo.fluenterror