This commit is contained in:
Emile Nijssen 2022-07-03 21:38:22 +02:00
parent eda9dd5d95
commit bc320fbf79
1 changed files with 1 additions and 1 deletions

View File

@ -104,7 +104,7 @@ module.exports = class Server {
.replace(/(-{2,}|-$)/g, '-')
.replace(/-$/, '')
.substring(0, 32);
res.header('Content-Disposition', `attachment; filename="${configName}.conf"`);
res.header('Content-Disposition', `attachment; filename="${configName || clientId}.conf"`);
res.header('Content-Type', 'text/plain');
res.send(config);
}))