Rename column uploadkey

This commit is contained in:
relikd
2020-08-29 14:48:53 +02:00
parent 69d8321180
commit b4bf705b7f
3 changed files with 9 additions and 9 deletions

View File

@@ -38,6 +38,6 @@ extension Recording {
} }
var duration: Timestamp? { get { stop == nil ? nil : stop! - start } }
var isLongTerm: Bool { (duration ?? 0) > Timestamp.hours(1) }
var isShared: Bool { sharekey?.count ?? 0 > 0}
var isShared: Bool { uploadkey?.count ?? 0 > 0}
}