feat: #9232, add profile picture into exported zip

v1.18.x
Barış Soner Uşaklı 4 years ago
parent 5131eb6b90
commit f6cd2862bd

@ -71,6 +71,15 @@ process.on('message', async function (msg) {
archive.pipe(output);
winston.verbose('[user/export/uploads] Collating uploads for uid ' + targetUid);
await user.collateUploads(targetUid, archive);
const uploadedPicture = await user.getUserField(targetUid, 'uploadedpicture');
if (uploadedPicture) {
const filePath = uploadedPicture.replace(nconf.get('upload_url'), '');
archive.file(path.join(nconf.get('upload_path'), filePath), {
name: path.basename(filePath),
});
}
archive.finalize();
}
});

Loading…
Cancel
Save