Skip to content

Commit 21bb169

Browse files
committed
fixup
1 parent f2fc365 commit 21bb169

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Coder Desktop/Coder Desktop/Coder_DesktopApp.swift

+2-2
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ class AppDelegate: NSObject, NSApplicationDelegate {
6161
}
6262
// TODO: Start the daemon only once a file sync is configured
6363
Task {
64-
try? await fileSyncDaemon.start()
64+
await fileSyncDaemon.start()
6565
}
6666
}
6767

@@ -75,7 +75,7 @@ class AppDelegate: NSObject, NSApplicationDelegate {
7575
}
7676
}
7777
let fileSyncStop = Task {
78-
try? await fileSyncDaemon.stop()
78+
await fileSyncDaemon.stop()
7979
}
8080
_ = await (vpnStop.value, fileSyncStop.value)
8181
NSApp.reply(toApplicationShouldTerminate: true)

0 commit comments

Comments
 (0)