Skip to content

Commit

Permalink
Correcting indentation with proper tabs/spaces
Browse files Browse the repository at this point in the history
  • Loading branch information
Dhumal, Abhijeet committed May 16, 2015
1 parent 3f43f5b commit c3ada55
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ function uploadService(opts) {
var tmpFiles = [];
var files = [];
var map = {};
var fields = {};
var fields = {};
var redirect;

this.config.host = req.headers.host;
Expand Down Expand Up @@ -79,7 +79,7 @@ function uploadService(opts) {
map[fileInfo.key] = fileInfo;
files.push(fileInfo);
}).on('field', function(name, value) {
fields[name] = value;
fields[name] = value;
if (name === 'redirect') {
redirect = value;
}
Expand Down
2 changes: 1 addition & 1 deletion lib/fileinfo.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ function FileInfo(file, opts, fields) {
this.proccessed = false;
this.width = udf;
this.height = udf;
this.fields = fields;
this.fields = fields;
if (opts.saveFile) {
this.safeName();
}
Expand Down

0 comments on commit c3ada55

Please sign in to comment.