Skip to content

Commit

Permalink
Fix 'limit' file size option that was broken in 61a2cf
Browse files Browse the repository at this point in the history
  • Loading branch information
cpojer committed Sep 12, 2012
1 parent 5081d09 commit 589dc6f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/functions/url.js
Expand Up @@ -52,7 +52,7 @@ module.exports = function(options) {
options = options || {}; options = options || {};


var _paths = options.paths || []; var _paths = options.paths || [];
var sizeLimit = null != options.sizeLimit ? options.sizeLimit : 30000; var sizeLimit = null != options.limit ? options.limit : 30000;


function fn(url){ function fn(url){
// Compile the url // Compile the url
Expand Down

0 comments on commit 589dc6f

Please sign in to comment.