Skip to content

Commit

Permalink
Fix compat with ss-win 4.1.9 (update code)
Browse files Browse the repository at this point in the history
  • Loading branch information
iBug committed Jul 26, 2020
1 parent 0df3228 commit 65635cc
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ PAC scripts for proxies

每周六 12:00 (UTC) 会自动使用 GitHub Actions 运行[生成脚本](build.py)从数据源获取 IP 地址列表并生成 PAC 文件。

本代码是为 Shadowsocks Windows 4.1.9 及以上版本设计的,若要在旧版本中使用请手动修改一处字符串,详情见 [shadowsocks-windows#2761](https://github.com/shadowsocks/shadowsocks-windows/issues/2761)

## 贡献

本项目包含两部分
Expand Down
2 changes: 1 addition & 1 deletion code.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ function isLan(host) {
return belongsToSubnet(host, LAN);
}

var proxy = "__PROXY__";
var proxy = __PROXY__;
var direct = "DIRECT";

function FindProxyForURL(url, host) {
Expand Down

0 comments on commit 65635cc

Please sign in to comment.