forked from FoundKeyGang/FoundKey
[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({
|
||||
url: _url + url.parse(req.url, true).search,
|
||||
url: _url + (url.parse(req.url, true).search || ''),
|
||||
encoding: null
|
||||
}, (err, response, content) => {
|
||||
if (err) {
|
||||
|
|
Loading…
Reference in a new issue