Skip to content

Commit 402221a

Browse files
committed
fix android tip error
fix windows auto launch error
1 parent f6d9ed1 commit 402221a

File tree

4 files changed

+2
-4
lines changed

4 files changed

+2
-4
lines changed

core/tun.go

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,6 @@ func stopTun() {
109109
runTime = nil
110110

111111
if tun != nil {
112-
log.Errorln("[Tun] stopTun")
113112
tun.Close()
114113
tun = nil
115114
}

core/tun/tun.go

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,6 @@ func Start(fd int, gateway, portal, dns string) (io.Closer, error) {
6767
for stack.TCP().SetDeadline(time.Time{}) == nil {
6868
conn, err := stack.TCP().Accept()
6969
if err != nil {
70-
log.Errorln("Accept connection: %v", err)
7170
continue
7271
}
7372
lAddr := conn.LocalAddr().(*net.TCPAddr)

lib/common/launch.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ class AutoLaunch {
6767
'/TN',
6868
appName,
6969
'/TR',
70-
Platform.resolvedExecutable,
70+
'"${Platform.resolvedExecutable}"',
7171
'/RL',
7272
'HIGHEST',
7373
'/F'

pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: fl_clash
22
description: A multi-platform proxy client based on ClashMeta, simple and easy to use, open-source and ad-free.
33
publish_to: 'none'
4-
version: 0.8.55+202408251
4+
version: 0.8.56+202408261
55
environment:
66
sdk: '>=3.1.0 <4.0.0'
77
flutter: 3.22.3

0 commit comments

Comments
 (0)