We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 21efab9 commit bb4eed9Copy full SHA for bb4eed9
solga-client-ghcjs/src/Solga/Client/GHCJS.hs
@@ -181,7 +181,7 @@ performXHR respType Request{..} = do
181
let xhr = reqXHR
182
DOM.setResponseType xhr respType
183
uri <- js_encodeURI (reqHost <> JSS.intercalate "/" (DList.toList reqSegments) <> reqQueryString)
184
- DOM.open xhr reqMethod uri False reqUser reqPassword
+ DOM.open xhr reqMethod uri True reqUser reqPassword
185
for_ reqHeaders (uncurry (DOM.setRequestHeader xhr))
186
r <- case reqBody of
187
Nothing -> js_send0 xhr
0 commit comments