fix: don't copy if src doesn't exist

v1.18.x
Barış Soner Uşaklı 4 years ago
parent 754283d37b
commit ebccc7940b

@ -11,8 +11,9 @@ module.exports = {
method: async function () {
const pathToIco = path.join(nconf.get('upload_path'), 'system', 'favicon.ico');
const defaultIco = path.join(nconf.get('base_dir'), 'public', 'favicon.ico');
const exists = await file.exists(pathToIco);
if (!exists) {
const targetExists = await file.exists(pathToIco);
const defaultExists = await file.exists(defaultIco);
if (defaultExists && !targetExists) {
await fs.promises.copyFile(defaultIco, pathToIco);
}
},

Loading…
Cancel
Save