diff options
Diffstat (limited to 'profile/index.js')
-rw-r--r-- | profile/index.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/profile/index.js b/profile/index.js index be0c232..41de0d5 100644 --- a/profile/index.js +++ b/profile/index.js @@ -75,7 +75,7 @@ async function answerImage(req, res, qs) { for (const fid in req.files) { if (!req.files.hasOwnProperty(fid)) continue; const image = req.files[fid]; - const name = `${req.session.uid}_${new Date().getTime()}.jpg`; + const name = `child_${req.session.uid}.jpg`; try { await image.mv(`${__dirname}/public/uploads/${name}`); await db.query(qs, [name, fid, req.session.uid]); |