Browse Source

fix bug that didn't return error

jomo 10 năm trước cách đây
mục cha
commit
5f8465c06a
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  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);
     }
   });
 };