Sfoglia il codice sorgente

fix: 修复协议字段没有调整的问题

陈文艺 20 ore fa
parent
commit
e8d570665f
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  1. 1 1
      Lanu/Manager/Purchase/LNPurchaseManager.swift

+ 1 - 1
Lanu/Manager/Purchase/LNPurchaseManager.swift

@@ -169,7 +169,7 @@ extension LNPurchaseManager {
     func getBankAccountStatus(queue: DispatchQueue = .main, handler: @escaping(LNBankAccountStatus?) -> Void) {
         LNHttpManager.shared.getBankAccountStatus { res, err in
             queue.asyncIfNotGlobal {
-                handler(res?.bankCardState)
+                handler(res?.state)
             }
         }
     }