Fix default wg_dns setting

All settings are processed as strings so use empty string in place of
False for default.
This commit is contained in:
Timotej Lazar 2024-07-29 11:16:08 +02:00
parent 25ee4e8a44
commit 8c9829b726

View file

@ -25,7 +25,7 @@ def create_app(test_config=None):
'wg_endpoint': '', 'wg_endpoint': '',
'wg_port': '51820', 'wg_port': '51820',
'wg_allowed_nets': '', 'wg_allowed_nets': '',
'wg_dns': False, 'wg_dns': '',
'wg_key': '', 'wg_key': '',
'wg_net': '', 'wg_net': '',
'wg_net6': '', 'wg_net6': '',