Explorar el Código

fix bug that didn't return error

jomo hace 10 años
padre
commit
5f8465c06a
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      modules/networking.js

+ 1 - 1
modules/networking.js

@@ -72,7 +72,7 @@ exp.skin_file = function(url, facename, helmname, callback) {
         console.error(response);
         console.error(body);
       }
-      callback(null);
+      callback(error);
     }
   });
 };