Explorar el Código

fix lint warning

cyberta hace 4 años
padre
commit
7e366e56a8
Se han modificado 1 ficheros con 3 adiciones y 1 borrados
  1. 3 1
      deltachat-ios/Chat/ChatViewController.swift

+ 3 - 1
deltachat-ios/Chat/ChatViewController.swift

@@ -1523,7 +1523,9 @@ extension ChatViewController: QLPreviewControllerDelegate {
 
 extension ChatViewController: AudioControllerDelegate {
     func onAudioPlayFailed() {
-        let alert = UIAlertController(title: String.localized("error"), message: String.localized("cannot_play_unsupported_file_type"), preferredStyle: .safeActionSheet)
+        let alert = UIAlertController(title: String.localized("error"),
+                                      message: String.localized("cannot_play_unsupported_file_type"),
+                                      preferredStyle: .safeActionSheet)
         alert.addAction(UIAlertAction(title: String.localized("ok"), style: .default, handler: nil))
         self.present(alert, animated: true, completion: nil)
     }