Skip to content

Commit

Permalink
Fixed workers error 1101
Browse files Browse the repository at this point in the history
  • Loading branch information
3Kmfi6HP committed Apr 17, 2024
1 parent 34590b8 commit 9feb758
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion _worker.js
Original file line number Diff line number Diff line change
Expand Up @@ -839,7 +839,7 @@ function createVLESSSub(userID_Path, hostName) {
const httpConfigurations = Array.from(portSet_http).flatMap((port) => {
if (!hostName.includes('pages.dev')) {
const urlPart = `${hostName}-HTTP-${port}`;
const vlessMainHttps = 'vless://' + userID + '@' + hostName + ':' + port + commonUrlPart_http + urlPart;
const vlessMainHttp = 'vless://' + userID + '@' + hostName + ':' + port + commonUrlPart_http + urlPart;
return proxyIPs.flatMap((proxyIP) => {
const vlessSecHttp = 'vless://' + userID + '@' + proxyIP + ':' + port + commonUrlPart_http + urlPart + '-' + proxyIP + '-EDtunnel';
return [vlessMainHttp, vlessSecHttp];
Expand Down

0 comments on commit 9feb758

Please sign in to comment.