luci-proto-wireguard: fix configuration import

Avoid referencing not existing `peerdns` option during the configuration
file import process.

Fixes: #6136
Fixes: 2be01cbfcb ("luci-mod-network: restrict peerdns option to protocols that implemenent it")
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
This commit is contained in:
Jo-Philipp Wich 2022-12-05 10:34:51 +01:00
parent 971cd82b41
commit 785792a591

View file

@ -361,10 +361,8 @@ return network.registerProtocol('wireguard', {
s.getOption('listen_port').getUIElement(s.section).setValue(config.interface_listenport || '');
s.getOption('addresses').getUIElement(s.section).setValue(config.interface_address);
if (config.interface_dns) {
s.getOption('peerdns').getUIElement(s.section).setValue('0');
if (config.interface_dns)
s.getOption('dns').getUIElement(s.section).setValue(config.interface_dns);
}
for (var i = 0; i < config.peers.length; i++) {
var pconf = config.peers[i];