Merge pull request #413 from mpretty-cyro/fix/potential-UI-deadlock

Fixed a potential deadlock which could occur when typing
pull/1061/head
Morgan Pretty 3 days ago committed by GitHub
commit 0451ed723b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -303,6 +303,7 @@ final class InputView: UIView, InputViewButtonDelegate, InputTextViewDelegate, M
// Suggest that the user enable link previews if they haven't already and we haven't // Suggest that the user enable link previews if they haven't already and we haven't
// told them about link previews yet // told them about link previews yet
let text = inputTextView.text! let text = inputTextView.text!
DispatchQueue.global(qos: .userInitiated).async { [weak self, dependencies] in
let areLinkPreviewsEnabled: Bool = dependencies[singleton: .storage, key: .areLinkPreviewsEnabled] let areLinkPreviewsEnabled: Bool = dependencies[singleton: .storage, key: .areLinkPreviewsEnabled]
if if
@ -310,7 +311,9 @@ final class InputView: UIView, InputViewButtonDelegate, InputTextViewDelegate, M
!areLinkPreviewsEnabled && !areLinkPreviewsEnabled &&
!dependencies[defaults: .standard, key: .hasSeenLinkPreviewSuggestion] !dependencies[defaults: .standard, key: .hasSeenLinkPreviewSuggestion]
{ {
delegate?.showLinkPreviewSuggestionModal() DispatchQueue.main.async {
self?.delegate?.showLinkPreviewSuggestionModal()
}
dependencies[defaults: .standard, key: .hasSeenLinkPreviewSuggestion] = true dependencies[defaults: .standard, key: .hasSeenLinkPreviewSuggestion] = true
return return
} }
@ -318,7 +321,10 @@ final class InputView: UIView, InputViewButtonDelegate, InputTextViewDelegate, M
guard areLinkPreviewsEnabled else { return } guard areLinkPreviewsEnabled else { return }
// Proceed // Proceed
autoGenerateLinkPreview() DispatchQueue.main.async {
self?.autoGenerateLinkPreview()
}
}
} }
func autoGenerateLinkPreview() { func autoGenerateLinkPreview() {

Loading…
Cancel
Save