remove useless get_image_hash line for renders

This commit is contained in:
jomo 2015-01-04 05:34:35 +01:00
parent 9affb00576
commit e26cff3718

View File

@ -184,7 +184,6 @@ function get_type(helm, body) {
// callback contanis error, hash, image buffer
exp.get_render = function(uuid, scale, helm, body, callback) {
logging.log(uuid + " render request");
exp.get_image_hash(uuid, function(err, status, hash) {
exp.get_skin(uuid, function(err, hash, img) {
if (!hash) {
callback(err, -1, hash, null);
@ -216,7 +215,6 @@ exp.get_render = function(uuid, scale, helm, body, callback) {
}
});
});
});
};
module.exports = exp;