浏览代码

fix indents

nayooti 5 年之前
父节点
当前提交
a7a5e9326b
共有 1 个文件被更改,包括 6 次插入6 次删除
  1. 6 6
      DcCore/DcCore/DC/Wrapper.swift

+ 6 - 6
DcCore/DcCore/DC/Wrapper.swift

@@ -759,12 +759,12 @@ public class DcChat {
 	}()
 	}()
 
 
 	public var profileImageURL: URL? {
 	public var profileImageURL: URL? {
-		guard let cString = dc_chat_get_profile_image(chatPointer) else { return nil }
-		let filename = String(cString: cString)
-		dc_str_unref(cString)
-		let path: URL = URL(fileURLWithPath: filename, isDirectory: false)
-		return path
-	}
+        guard let cString = dc_chat_get_profile_image(chatPointer) else { return nil }
+        let filename = String(cString: cString)
+        dc_str_unref(cString)
+        let path: URL = URL(fileURLWithPath: filename, isDirectory: false)
+        return path
+    }
 
 
     public var isSendingLocations: Bool {
     public var isSendingLocations: Bool {
         return dc_chat_is_sending_locations(chatPointer) == 1
         return dc_chat_is_sending_locations(chatPointer) == 1