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
{{ message }}
This repository has been archived by the owner on Apr 20, 2018. It is now read-only.
Creating an Ajax request with the option crossDomain set to true does not set withCredentials.
Furthermore, there is no option to manually change this option.
Is this expected? I have overcome this issue by updating the source and adding a new line in getCORSRequest():
if ('withCredentials' in xhr) {
return xhr;
}
is now:
if ('withCredentials' in xhr) {
xhr.withCredentials = true;
return xhr;
}
Any help/advice would be appreciated.
The text was updated successfully, but these errors were encountered:
Creating an Ajax request with the option
crossDomain
set to true does not setwithCredentials
.Furthermore, there is no option to manually change this option.
Is this expected? I have overcome this issue by updating the source and adding a new line in
getCORSRequest()
:is now:
Any help/advice would be appreciated.
The text was updated successfully, but these errors were encountered: