diff options
| author | Pascal Temel <[email protected]> | 2017-02-07 01:15:39 +0100 |
|---|---|---|
| committer | GitHub <[email protected]> | 2017-02-07 01:15:39 +0100 |
| commit | b008f77d360fbfa4ff1aebc0377aa49970b8a48e (patch) | |
| tree | f167982d4cadd0248df969d2b769989025af8cca /controllers/uploadController.js | |
| parent | support thumbnails for .webm and .mp4 files (diff) | |
| download | host.fuwn.me-b008f77d360fbfa4ff1aebc0377aa49970b8a48e.tar.xz host.fuwn.me-b008f77d360fbfa4ff1aebc0377aa49970b8a48e.zip | |
Remove unused parameter
Diffstat (limited to 'controllers/uploadController.js')
| -rw-r--r-- | controllers/uploadController.js | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/controllers/uploadController.js b/controllers/uploadController.js index 1e1efe5..3d41116 100644 --- a/controllers/uploadController.js +++ b/controllers/uploadController.js @@ -264,8 +264,7 @@ uploadsController.list = function(req, res){ timestamps: [0], filename: '%b.png', folder: './' + config.uploads.folder + '/thumbs', - size: '200x?', - autopad: true + size: '200x?' }) .on('error', function(error) { console.log('Error - ', error.message) @@ -304,4 +303,4 @@ uploadsController.list = function(req, res){ }) } -module.exports = uploadsController
\ No newline at end of file +module.exports = uploadsController |