cyberta hace 3 años
padre
commit
0fbdc3f873
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  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
         }