Removed workaround for joto/taginfo#179

This commit is contained in:
Minh Nguyễn
2016-08-02 00:18:32 -07:00
parent e99afbe1c1
commit c469152925

View File

@@ -156,7 +156,7 @@ export function init() {
request(endpoint + path + qsString(parameters), debounce, function(err, d) {
if (err) return callback(err);
callback(null, parameters.rtype ? d : d.data);
callback(null, d.data);
});
};