소스 검색

Avoid a warning for interpolating an optional into a string

Samuel Giddins 6 년 전
부모
커밋
459c13d297
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      Sources/VLCSettingsTableViewCell.swift

+ 1 - 1
Sources/VLCSettingsTableViewCell.swift

@@ -57,7 +57,7 @@ class VLCSettingsTableViewCell: UITableViewCell {
         case kIASKOpenURLSpecifier:
             break
         default:
-            assertionFailure("\(specifier.type()) has not been defined for VLCSettingsTableViewCell")
+            assertionFailure("\(specifier.type() ?? "nil") has not been defined for VLCSettingsTableViewCell")
         }
     }