From 5f8465c06a87fe72dbd6f026322b19d8047709b0 Mon Sep 17 00:00:00 2001 From: jomo Date: Sat, 1 Nov 2014 21:29:43 +0100 Subject: [PATCH] fix bug that didn't return error --- modules/networking.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/networking.js b/modules/networking.js index 88eb5b9..69ba150 100644 --- a/modules/networking.js +++ b/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); } }); };