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 596c970 commit dd1a0a4Copy full SHA for dd1a0a4
HackerNews/AppDelegate.swift
@@ -11,7 +11,8 @@ import HNAPI
11
result in
12
switch result {
13
case .success(let token): Token.current = token
14
- case .failure(let error): NSApplication.shared.presentError(error)
+ case .failure(let error):
15
+ DispatchQueue.main.async { NSApplication.shared.presentError(error) }
16
}
17
18
HackerNews/Info.plist
@@ -19,7 +19,7 @@
19
<key>CFBundleShortVersionString</key>
20
<string>0.1.0</string>
21
<key>CFBundleVersion</key>
22
- <string>75</string>
+ <string>80</string>
23
<key>LSMinimumSystemVersion</key>
24
<string>$(MACOSX_DEPLOYMENT_TARGET)</string>
25
<key>NSMainStoryboardFile</key>
0 commit comments