Update proxy exceptions.

Add some ipv6 address to proxy exceptions.
This commit is contained in:
Qiu Yuzhou
2018-09-16 20:50:39 +08:00
parent 8522f528d0
commit 30d7e453e2

View File

@ -33,7 +33,7 @@ class PreferencesWinController: NSWindowController {
@IBAction func resetProxyExceptions(sender: NSButton) {
let defaults = UserDefaults.standard
defaults.set("127.0.0.1, localhost, 192.168.0.0/16, 10.0.0.0/8", forKey: "ProxyExceptions")
defaults.set("127.0.0.1, localhost, 192.168.0.0/16, 10.0.0.0/8, FE80::/64, ::1, FD00::/8", forKey: "ProxyExceptions")
}
}