diff --git a/src/index.js b/src/index.js
index c8a42057bbbd8f2746768218dc44e5236bccbcfa..27a17338ea6206216b9fa137b634d1d27a248e1b 100644
--- a/src/index.js
+++ b/src/index.js
@@ -148,31 +148,33 @@ async function getData(response, baseUrl, apiAuthKey) {
 }
 
 function format(response) {
-  const data = response.resultatRetour.slice(1).filter(value => {
-    value.TypeAgregat === "R"
-  }).map((value, index) => {
-    const time = moment(value.DateReleve, moment.ISO_8601)
-    log(
-      'info',
-      'date -> ' + value.DateReleve + ' SUBSTRACTING : ' +
-        value.ValeurIndex +
-        ' - ' +
-        response.resultatRetour[index].ValeurIndex +
-        '\n'
-    )
-    return {
-      load:
-        value.TypeAgregat === 'T'
-          ? null
-          : value.ValeurIndex - response.resultatRetour[index].ValeurIndex,
-      year: parseInt(time.format('YYYY')),
-      month: parseInt(time.format('M')),
-      day: parseInt(time.format('D')),
-      hour: 0,
-      minute: 0,
-      type: value.TypeAgregat
-    }
-  })
+  const data = response.resultatRetour
+    .slice(1)
+    .filter(value => {
+      value.TypeAgregat === 'R'
+    })
+    .map((value, index) => {
+      const time = moment(value.DateReleve, moment.ISO_8601)
+      log(
+        'info',
+        'date -> ' +
+          value.DateReleve +
+          ' SUBSTRACTING : ' +
+          value.ValeurIndex +
+          ' - ' +
+          response.resultatRetour[index].ValeurIndex +
+          '\n'
+      )
+      return {
+        load: value.ValeurIndex - response.resultatRetour[index].ValeurIndex,
+        year: parseInt(time.format('YYYY')),
+        month: parseInt(time.format('M')),
+        day: parseInt(time.format('D')),
+        hour: 0,
+        minute: 0,
+        type: value.TypeAgregat
+      }
+    })
   log('info', 'DATALOAD LIST\n')
   data.map(value => {
     log(