Fix usages of writeFatalError

This commit is contained in:
世界
2025-11-26 22:25:47 +08:00
parent f4b284acd8
commit 61f1036f57
4 changed files with 31 additions and 26 deletions
@@ -357,12 +357,12 @@ public class ExtensionPlatformInterface: NSObject, LibboxPlatformInterfaceProtoc
}
public func serviceStop() throws {
reset()
tunnel.stopService()
}
public func serviceReload() throws {
runBlocking { [self] in
await tunnel.reloadService()
try runBlocking { [self] in
try await tunnel.reloadService()
}
}