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>
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];