mirror of
https://github.com/JGeek00/adguard-home-manager.git
synced 2025-04-21 14:29:12 +00:00
Fix parse ttl client
This commit is contained in:
parent
62daa56b1b
commit
565494e3f9
1 changed files with 1 additions and 1 deletions
|
@ -156,7 +156,7 @@ class _DnsServerSettingsScreenState extends State<DnsServerSettingsScreen> {
|
|||
"blocking_mode": blockingMode,
|
||||
"blocking_ipv4": ipv4controller.text,
|
||||
"blocking_ipv6": ipv6controller.text,
|
||||
"blocked_response_ttl": int.parse(_ttlController.text)
|
||||
"blocked_response_ttl": int.tryParse(_ttlController.text)
|
||||
});
|
||||
|
||||
processModal.close();
|
||||
|
|
Loading…
Add table
Reference in a new issue