This commit is contained in:
barisusakli
2017-04-14 13:38:58 -04:00
parent 36df4cdf97
commit da7bc5bb7a
2 changed files with 7 additions and 2 deletions

View File

@@ -2,6 +2,7 @@
var async = require('async');
var fs = require('fs');
var path = require('path');
var Jimp = require('jimp');
var mime = require('mime');
var winston = require('winston');
@@ -37,8 +38,9 @@ module.exports = function (Groups) {
},
function (_tempPath, next) {
tempPath = _tempPath;
uploadsController.uploadGroupCover(uid, {
name: 'groupCover',
name: 'groupCover' + path.extname(tempPath),
path: tempPath,
type: type,
}, next);
@@ -52,7 +54,7 @@ module.exports = function (Groups) {
},
function (next) {
uploadsController.uploadGroupCover(uid, {
name: 'groupCoverThumb',
name: 'groupCoverThumb' + path.extname(tempPath),
path: tempPath,
type: type,
}, next);