Bug fixes

This commit is contained in:
Juan Gilsanz Polo 2023-05-12 23:11:38 +02:00
parent e795050a95
commit ad27d0c24e
14 changed files with 69 additions and 43 deletions

View file

@ -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'])
: []
})
};
}