blob: feebdba201e7f04bc574ad7d2e33962a14ff1604 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
import Foundation
extension CapturaRemoteFile {
var name: String {
let dateFormatter = DateFormatter()
dateFormatter.dateStyle = .medium
dateFormatter.timeStyle = .medium
dateFormatter.locale = Locale.current
if let timestamp {
return dateFormatter.string(from: timestamp).replacingOccurrences(of: ":", with: ".")
}
return "Unknown"
}
}
|