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 1a1df45 commit a314922Copy full SHA for a314922
solga-client-ghcjs/src/Solga/Client/GHCJS.hs
@@ -180,7 +180,7 @@ performXHR :: DOM.XMLHttpRequestResponseType -> Request -> IO (Either XHRError (
180
performXHR respType Request{..} = do
181
let xhr = reqXHR
182
DOM.setResponseType xhr respType
183
- uri <- js_encodeURI (reqHost <> JSS.intercalate "/" (DList.toList reqSegments) <> reqQueryString)
+ uri <- js_encodeURI (reqHost <> "/" <> JSS.intercalate "/" (DList.toList reqSegments) <> reqQueryString)
184
DOM.open xhr reqMethod uri True reqUser reqPassword
185
for_ reqHeaders (uncurry (DOM.setRequestHeader xhr))
186
r <- case reqBody of
0 commit comments