Parcourir la source

fix bug that didn't return error

jomo il y a 10 ans
Parent
commit
5f8465c06a
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  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);
     }
   });
 };