Browse Source

Merge branch 'community' of https://git.yishihui.com/iOS/BFFramework into community

wenweiwei 3 years ago
parent
commit
ce8a9cc081
1 changed files with 3 additions and 0 deletions
  1. 3 0
      BFFramework/Classes/PModels/PQVideoListModel.swift

+ 3 - 0
BFFramework/Classes/PModels/PQVideoListModel.swift

@@ -285,6 +285,9 @@ open class PQVideoListModel: PQBaseModel, BFVideoItemProtocol {
             user = jsonDict["user"] as? [String: Any]
             userInfo = PQUserInfoModel(jsonDict: user!)
         }
+        if jsonDict.keys.contains("topicInfo") {
+            topicInfo = jsonDict["topicInfo"] as? [String: Any]
+        }
         if jsonDict.keys.contains("shareCountFriend") {
             shareCountFriend = Int("\(jsonDict["shareCountFriend"] ?? "0")") ?? 0
         }