diff --git a/src/index.js b/src/index.js index 8f2b6affa53031b784be0e719d2db0ce98de4a12..7f6565584777f9d0c9cea4e438a8dd020d640525 100644 --- a/src/index.js +++ b/src/index.js @@ -53,6 +53,8 @@ async function start(fields, cozyParameters) { try { // resetting data for demo only // await resetData() + // const baseUrl = fields.eglBaseURL + // const apiAuthKey = fields.eglAPIAuthKey const baseUrl = cozyParameters.secret.eglBaseURL const apiAuthKey = cozyParameters.secret.eglAPIAuthKey log('info', 'Authenticating ...') @@ -254,7 +256,6 @@ function format(response) { type: value.TypeAgregat } } else { - log('info', 'end of data - date is : ' + value.DateReleve) return { load: null, year: parseInt(time.format('YYYY')), @@ -266,7 +267,8 @@ function format(response) { } } }) - return mapData + const res = [...mapData].filter(v => v.load !== null) + return res } // function processYearAggregation(data, doctype) {