mirror of
https://github.com/oxen-io/session-ios.git
synced 2023-12-13 21:30:14 +01:00
fix an issue where new additions to group not appearing in mentions
This commit is contained in:
parent
eab9cf96ec
commit
a12e86a36b
1 changed files with 2 additions and 0 deletions
|
@ -1,4 +1,5 @@
|
|||
import PromiseKit
|
||||
import SessionMessagingKit
|
||||
|
||||
@objc(SNEditClosedGroupVC)
|
||||
final class EditClosedGroupVC : BaseVC, UITableViewDataSource, UITableViewDelegate {
|
||||
|
@ -292,6 +293,7 @@ final class EditClosedGroupVC : BaseVC, UITableViewDataSource, UITableViewDelega
|
|||
}, completion: {
|
||||
let _ = promise.done(on: DispatchQueue.main) {
|
||||
guard let self = self else { return }
|
||||
MentionsManager.populateUserPublicKeyCacheIfNeeded(for: self.thread.uniqueId!)
|
||||
self.dismiss(animated: true, completion: nil) // Dismiss the loader
|
||||
popToConversationVC(self)
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue