mirror of
https://github.com/flutter/samples.git
synced 2025-11-08 22:09:06 +00:00
@@ -73,7 +73,10 @@ class Unsplash {
|
|||||||
}
|
}
|
||||||
|
|
||||||
return SearchPhotosResponse.fromJson(
|
return SearchPhotosResponse.fromJson(
|
||||||
response.body,
|
// Per Response#body, if the Content-Type header is unknown, bodyBytes
|
||||||
|
// is interpreted as latin1. Unsplash returns utf8, but with no encoding
|
||||||
|
// specified in the Content-Type, so we must do it ourselves.
|
||||||
|
utf8.decode(response.bodyBytes),
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -73,7 +73,10 @@ class Unsplash {
|
|||||||
}
|
}
|
||||||
|
|
||||||
return SearchPhotosResponse.fromJson(
|
return SearchPhotosResponse.fromJson(
|
||||||
response.body,
|
// Per Response#body, if the Content-Type header is unknown, bodyBytes
|
||||||
|
// is interpreted as latin1. Unsplash returns utf8, but with no encoding
|
||||||
|
// specified in the Content-Type, so we must do it ourselves.
|
||||||
|
utf8.decode(response.bodyBytes),
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user