Merge pull request #4244 from AlphaWallet/fix-broken-build

Fix broken build
pull/4245/head
Hwee-Boon Yar 3 years ago committed by GitHub
commit 722bc9eca0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      AlphaWallet/BlockscanChat/BlockscanChatService.swift

@ -84,7 +84,7 @@ class BlockscanChatService {
let isCurrentRealAccount = account.address == address
guard isCurrentRealAccount else { return }
delegate?.openBlockscanChat(url: Constants.BlockscanChat.blockscanChatWebUrl.appendingPathComponent(address.eip55String), for: self)
let delayForUserToClearChats = 10
let delayForUserToClearChats: Double = 10
DispatchQueue.main.asyncAfter(deadline: .now() + delayForUserToClearChats) { [weak self] in
self?.refreshUnreadCountForCurrentWallet()
}

Loading…
Cancel
Save