浏览代码

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")
         }
     }