Update bundles [skip ci]

This commit is contained in:
Gandalf-the-Bot 2016-08-04 17:24:38 +00:00
parent 2e70ca01f8
commit 85ecd3545f
2 changed files with 38 additions and 38 deletions

View file

@ -808,7 +808,7 @@ var requestService = function($window) {
xhr.onreadystatechange = function() {
if (xhr.readyState === 4) {
try {
var response = args.deserialize(args.extract(xhr, args))
var response = (args.extract !== extract) ? args.extract(xhr, args) : args.deserialize(args.extract(xhr, args))
if (xhr.status >= 200 && xhr.status < 300) {
stream(cast(args.type, response))
}