Browse Source

fix bug that didn't return error

jomo 10 years ago
parent
commit
5f8465c06a
1 changed files with 1 additions and 1 deletions
  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(response);
         console.error(body);
         console.error(body);
       }
       }
-      callback(null);
+      callback(error);
     }
     }
   });
   });
 };
 };