Selaa lähdekoodia

attempt to fix indentation

nayooti 5 vuotta sitten
vanhempi
commit
4f1136a695
1 muutettua tiedostoa jossa 4 lisäystä ja 4 poistoa
  1. 4 4
      DcCore/DcCore/DC/Wrapper.swift

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

@@ -760,10 +760,10 @@ public class DcChat {
 
 	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
+		let filename = String(cString: cString)
+		dc_str_unref(cString)
+		let path: URL = URL(fileURLWithPath: filename, isDirectory: false)
+		return path
 	}
 
     public var isSendingLocations: Bool {