mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2025-03-17 00:31:06 +02:00
[Server] Fix bug
This commit is contained in:
parent
1af70a5930
commit
5ceb5b6a1f
1 changed files with 1 additions and 1 deletions
|
@ -10,7 +10,7 @@ module.exports = (req: express.Request, res: express.Response) => {
|
||||||
}
|
}
|
||||||
|
|
||||||
request({
|
request({
|
||||||
url: _url + url.parse(req.url, true).search,
|
url: _url + (url.parse(req.url, true).search || ''),
|
||||||
encoding: null
|
encoding: null
|
||||||
}, (err, response, content) => {
|
}, (err, response, content) => {
|
||||||
if (err) {
|
if (err) {
|
||||||
|
|
Loading…
Reference in a new issue