mirror of
https://github.com/JGeek00/adguard-home-manager.git
synced 2025-05-04 12:24:47 +00:00
Fixed issues filtering
This commit is contained in:
parent
7b344aacce
commit
d46dd19b48
2 changed files with 3 additions and 3 deletions
|
@ -70,7 +70,7 @@ class Filter {
|
|||
factory Filter.fromJson(Map<String, dynamic> json) => Filter(
|
||||
url: json["url"],
|
||||
name: json["name"],
|
||||
lastUpdated: json["last_updated"] != '' ? DateTime.parse(json["last_updated"]) : null,
|
||||
lastUpdated: json["last_updated"] != null && json["last_updated"] != '' ? DateTime.parse(json["last_updated"]) : null,
|
||||
id: json["id"],
|
||||
rulesCount: json["rules_count"],
|
||||
enabled: json["enabled"],
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue