mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-01-28 08:39:20 +00:00
fix unkown record name
This commit is contained in:
parent
f749195935
commit
d2a5913d09
1 changed files with 1 additions and 1 deletions
|
|
@ -46,7 +46,7 @@ enum NetworkType: Int {
|
|||
|
||||
@objc static func recordingFilePathFromCall(address: String) -> String {
|
||||
var filePath = "recording_"
|
||||
filePath = filePath.appending(address.isEmpty ? address : "unknow")
|
||||
filePath = filePath.appending(address.isEmpty ? "unknow" : address)
|
||||
let now = Date()
|
||||
let dateFormat = DateFormatter()
|
||||
dateFormat.dateFormat = "E-d-MMM-yyyy-HH-mm-ss"
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue