mirror of
https://github.com/Ranchero-Software/NetNewsWire
synced 2025-08-12 06:26:36 +00:00
Make sure that the error is displayed after the progress window is ended by doing an DispatchQueue.main.async on the error display.
This commit is contained in:
@@ -87,7 +87,9 @@ class AddFeedController: AddFeedWindowControllerDelegate {
|
||||
case AccountError.createErrorNotFound:
|
||||
self.showNoFeedsErrorMessage()
|
||||
default:
|
||||
NSApplication.shared.presentError(error)
|
||||
DispatchQueue.main.async {
|
||||
NSApplication.shared.presentError(error)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user