0
0
mirror of https://github.com/vx3r/wg-gen-web.git synced 2024-11-04 17:31:17 +00:00

Remove characters from the name of the config-file that prevent it from being imported into WireGuard apps

This commit is contained in:
Christoph Haas 2020-10-08 10:41:57 +02:00
parent 8b4038c238
commit aa71b15d72

View File

@ -601,10 +601,17 @@
const url = window.URL.createObjectURL(new Blob([config]))
const link = document.createElement('a')
link.href = url
link.setAttribute('download', client.name.split(' ').join('-') + '.conf') //or any other extension
link.setAttribute('download', this.getConfigFileName(client)) //or any other extension
document.body.appendChild(link)
link.click()
},

getConfigFileName(client){
let name = client.name.split(' ').join('-');
// replace special chars
name = name.replace(/[^a-zA-Z0-9_-]+/g, '');
return name + '.conf';
},
}
};
</script>