update json parse

master
小赖 4 years ago
parent f21ea828e0
commit f83acd0016

@ -35,8 +35,9 @@ class DioParser {
} }
if (_ctype.contains('image/')) return ContentType.IMAGE; if (_ctype.contains('image/')) return ContentType.IMAGE;
if (_ctype.contains('audio/')) return ContentType.AUDIO; if (_ctype.contains('audio/')) return ContentType.AUDIO;
if (_ctype.contains('video/')) if (_ctype.contains('video/')) return ContentType.VIDEO;
return ContentType.VIDEO; if (_ctype.contains('application/json'))
return ContentType.JSON;
else else
return ContentType.UNCATCH; return ContentType.UNCATCH;
} }

Loading…
Cancel
Save