mirror of
https://github.com/JGeek00/adguard-home-manager.git
synced 2025-05-14 05:52:51 +00:00
Bug fixes
This commit is contained in:
parent
e795050a95
commit
ad27d0c24e
14 changed files with 69 additions and 43 deletions
|
@ -865,7 +865,9 @@ Future getFiltering({
|
|||
'result': 'success',
|
||||
'data': FilteringData.fromJson({
|
||||
...jsonDecode(result[0]['body']),
|
||||
"blocked_services": jsonDecode(result[1]['body']),
|
||||
"blocked_services": result[1]['body'] != null
|
||||
? jsonDecode(result[1]['body'])
|
||||
: []
|
||||
})
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue