Merge pull request #782 from neuroscr/tls-fix

fix querystring in file-proxy
pull/752/head
Ryan Tharp 5 years ago committed by GitHub
commit 441fb78e96
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -485,8 +485,12 @@ class LokiAppDotNetServerAPI {
this.baseServerUrl === 'https://file.lokinet.org')
) {
mode = '_sendToProxy';
const endpointWithQS = url
.toString()
.replace(`${this.baseServerUrl}/`, '');
({ response, txtResponse, result } = await this._sendToProxy(
endpoint,
endpointWithQS,
fetchOptions
));
} else {

Loading…
Cancel
Save