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 2 days ago committed by GitHub
commit 0451ed723b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -303,22 +303,28 @@ 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!
let areLinkPreviewsEnabled: Bool = dependencies[singleton: .storage, key: .areLinkPreviewsEnabled] DispatchQueue.global(qos: .userInitiated).async { [weak self, dependencies] in
let areLinkPreviewsEnabled: Bool = dependencies[singleton: .storage, key: .areLinkPreviewsEnabled]
if
!LinkPreview.allPreviewUrls(forMessageBodyText: text).isEmpty && if
!areLinkPreviewsEnabled && !LinkPreview.allPreviewUrls(forMessageBodyText: text).isEmpty &&
!dependencies[defaults: .standard, key: .hasSeenLinkPreviewSuggestion] !areLinkPreviewsEnabled &&
{ !dependencies[defaults: .standard, key: .hasSeenLinkPreviewSuggestion]
delegate?.showLinkPreviewSuggestionModal() {
dependencies[defaults: .standard, key: .hasSeenLinkPreviewSuggestion] = true DispatchQueue.main.async {
return self?.delegate?.showLinkPreviewSuggestionModal()
}
dependencies[defaults: .standard, key: .hasSeenLinkPreviewSuggestion] = true
return
}
// Check that link previews are enabled
guard areLinkPreviewsEnabled else { return }
// Proceed
DispatchQueue.main.async {
self?.autoGenerateLinkPreview()
}
} }
// Check that link previews are enabled
guard areLinkPreviewsEnabled else { return }
// Proceed
autoGenerateLinkPreview()
} }
func autoGenerateLinkPreview() { func autoGenerateLinkPreview() {

Loading…
Cancel
Save