diff --git a/Sources/DVR/Session.swift b/Sources/DVR/Session.swift index 7811554..0e6d632 100644 --- a/Sources/DVR/Session.swift +++ b/Sources/DVR/Session.swift @@ -215,7 +215,7 @@ open class Session: URLSession { string = string.appending("\n") as NSString if let data = string.data(using: String.Encoding.utf8.rawValue) { - try? data.write(to: cassetteURL, options: [.atomic]) + try data.write(to: cassetteURL, options: [.atomic]) return }