Browse Source

Avoid a warning for interpolating an optional into a string

Samuel Giddins 6 years ago
parent
commit
459c13d297
1 changed files with 1 additions and 1 deletions
  1. 1 1
      Sources/VLCSettingsTableViewCell.swift

+ 1 - 1
Sources/VLCSettingsTableViewCell.swift

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