mirror of
https://github.com/JGeek00/adguard-home-manager.git
synced 2025-05-04 20:30:35 +00:00
Minor fixes
This commit is contained in:
parent
7bd59fef11
commit
e0ecac5415
2 changed files with 3 additions and 3 deletions
|
@ -27,7 +27,7 @@ class EncryptionData {
|
|||
final bool validPair;
|
||||
final bool enabled;
|
||||
final String? serverName;
|
||||
final bool forceHttps;
|
||||
final bool? forceHttps;
|
||||
final int? portHttps;
|
||||
final int? portDnsOverTls;
|
||||
final int? portDnsOverQuic;
|
||||
|
@ -81,7 +81,7 @@ class EncryptionData {
|
|||
validPair: json["valid_pair"],
|
||||
enabled: json["enabled"],
|
||||
serverName: json["server_name"],
|
||||
forceHttps: json["force_https"],
|
||||
forceHttps: json["force_https"] ?? false,
|
||||
portHttps: json["port_https"],
|
||||
portDnsOverTls: json["port_dns_over_tls"],
|
||||
portDnsOverQuic: json["port_dns_over_quic"],
|
||||
|
|
|
@ -39,7 +39,7 @@ class Log {
|
|||
final bool cached;
|
||||
final String client;
|
||||
final ClientInfo? clientInfo;
|
||||
final String clientProto;
|
||||
final String? clientProto;
|
||||
final String elapsedMs;
|
||||
final Question question;
|
||||
final String reason;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue