db/Pad: removed unuseful else clause, no functional changes

This commit is contained in:
muxator 2018-08-29 02:44:51 +02:00
parent e90487c3e2
commit 049f5f2859

View file

@ -489,11 +489,9 @@ Pad.prototype.copy = function copy(destinationID, force, callback) {
callback(new customError("groupID does not exist for destinationID","apierror"));
return;
}
//everything is fine, continue
else
{
callback();
}
callback();
});
}
else