mirror of
https://github.com/JGeek00/adguard-home-manager.git
synced 2025-04-21 22:39:11 +00:00
Fixed dns config issue
This commit is contained in:
parent
e2ea7ba51a
commit
83be151a57
1 changed files with 1 additions and 1 deletions
|
@ -66,7 +66,7 @@ class DnsProvider with ChangeNotifier {
|
||||||
if (result['result'] == 'success') {
|
if (result['result'] == 'success') {
|
||||||
DnsInfo data = dnsInfo!;
|
DnsInfo data = dnsInfo!;
|
||||||
if (value['local_ptr_upstreams'] != null) {
|
if (value['local_ptr_upstreams'] != null) {
|
||||||
data.localPtrUpstreams = value['local_ptr_upsreams'];
|
data.localPtrUpstreams = value['local_ptr_upstreams'];
|
||||||
}
|
}
|
||||||
data.usePrivatePtrResolvers = value['use_private_ptr_resolvers'];
|
data.usePrivatePtrResolvers = value['use_private_ptr_resolvers'];
|
||||||
data.resolveClients = value['resolve_clients'];
|
data.resolveClients = value['resolve_clients'];
|
||||||
|
|
Loading…
Add table
Reference in a new issue