浏览代码

fix lint warning

cyberta 4 年之前
父节点
当前提交
7e366e56a8
共有 1 个文件被更改,包括 3 次插入1 次删除
  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)
     }