Skip to content

Commit

Permalink
Merge pull request #6 from bdon/master
Browse files Browse the repository at this point in the history
remove filesize restriction
  • Loading branch information
Carol Hansen committed Jun 17, 2014
2 parents 6f199e0 + a3aeffd commit 69000e2
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@ function getMetadata(file, callback) {
fs.stat(file, function(err, stats) {
if (err) return callback(invalid('Error getting stats from file. File might not exist.'));
var filesize = stats['size'];
if (filesize > 216066856) return callback(invalid('File is larger than 200MB. Too big to process.'));
getFileType(file, function(err, filetype) {
if (err) return callback(err);
processDatasource.init(file, filesize, filetype, function(err, metadata) {
Expand Down

0 comments on commit 69000e2

Please sign in to comment.