You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fix an issue where an exception was thrown by the browser in XMLHttpRequests for reading responseXML when the responseType was set to text. (#89)
This was previously done to support certain clients that parsed xml responses not according to the official spec but introduced a bug in requests who do not return xml and are configured with responseType to text.
Fix responseXML being null when the responseType is not being detected correctly by the browser. align behaviour to match browsers that return responseXML with a document object even when the responseType is empty. (#86)