From df592034f632cb012b5f3226e5f9e09e99dc6b63 Mon Sep 17 00:00:00 2001 From: Jake Date: Sat, 29 Nov 2014 15:35:14 -0600 Subject: [PATCH] Fix callback --- modules/helpers.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/helpers.js b/modules/helpers.js index a2599bd..55e7280 100644 --- a/modules/helpers.js +++ b/modules/helpers.js @@ -149,7 +149,7 @@ exp.get_skin = function(uuid, callback) { exp.get_image_hash(uuid, function(err, status, hash) { if (hash) { var skinurl = "http://textures.minecraft.net/texture/" + hash; - networking.get_skin(skinurl, null, function(err, img) { + networking.get_skin(skinurl, function(err, img) { if (err) { logging.log("\nerror while downloading skin"); callback(err, hash, null);