Skip to content

Commit

Permalink
Update proxy.js
Browse files Browse the repository at this point in the history
Remove unwanted artefact
  • Loading branch information
FilipLeitner authored Feb 5, 2024
1 parent 5fa6cba commit 708b142
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion projects/hslayers-server/src/proxy.js
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ createServer((req, res) => {
res.end();
} else {
//tinyurl requests are encoded on client + dont work well with encodeUrlPathAndParams
if (req.url.includes('http://tinyurl.com/api-create.php') || req.url.includes()) {
if (req.url.includes('http://tinyurl.com/api-create.php')) {
cors_proxy.emit('request', req, res);
return
}
Expand Down

0 comments on commit 708b142

Please sign in to comment.