We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 801b504 commit 33eea8eCopy full SHA for 33eea8e
lib/services/mwebd_service.dart
@@ -83,7 +83,7 @@ final class MwebdService {
83
final proxy =
84
proxyInfo == null
85
? ""
86
- : "${proxyInfo.host.address}:${proxyInfo.port}";
+ : "socks5://${proxyInfo.host.address}:${proxyInfo.port}";
87
final nets = _map.keys;
88
for (final net in nets) {
89
final old = _map.remove(net)!;
@@ -158,7 +158,7 @@ final class MwebdService {
158
final String proxy;
159
if (Prefs.instance.useTor) {
160
final proxyInfo = TorService.sharedInstance.getProxyInfo();
161
- proxy = "${proxyInfo.host.address}:${proxyInfo.port}";
+ proxy = "socks5://${proxyInfo.host.address}:${proxyInfo.port}";
162
} else {
163
proxy = "";
164
}
0 commit comments