cyberta 3 년 전
부모
커밋
0fbdc3f873
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      deltachat-ios/Controller/WebxdcViewController.swift

+ 1 - 1
deltachat-ios/Controller/WebxdcViewController.swift

@@ -78,7 +78,7 @@ class WebxdcViewController: WebViewViewController {
     private func getTitleFromWebxdcInfoJson() -> String {
         let jsonString = dcContext.getMessage(id: messageId).getWebxdcInfoJson()
         if let data: Data = jsonString.data(using: .utf8),
-           let infoJson = (try? JSONSerialization.jsonObject(with: data, options: [])) as? [String:AnyObject],
+           let infoJson = (try? JSONSerialization.jsonObject(with: data, options: [])) as? [String: AnyObject],
            let title = infoJson["name"] as? String {
             return title
         }