File tree Expand file tree Collapse file tree
Sources/NextcloudKit/Models Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ public struct NKTrash: Sendable {
2121 public var iconName : String
2222 public var size : Int64
2323 public var classFile : String
24- public var livePhotoFile : String
24+ public var livePhoto : Bool
2525 public var trashbinFileName : String
2626 public var trashbinOriginalLocation : String
2727 public var trashbinDeletionTime : Date
@@ -38,7 +38,7 @@ public struct NKTrash: Sendable {
3838 iconName: String = " " ,
3939 size: Int64 = 0 ,
4040 classFile: String = " " ,
41- livePhotoFile : String = " " ,
41+ livePhoto : Bool = false ,
4242 trashbinFileName: String = " " ,
4343 trashbinOriginalLocation: String = " " ,
4444 trashbinDeletionTime: Date = Date ( ) ) {
@@ -54,7 +54,7 @@ public struct NKTrash: Sendable {
5454 self . iconName = iconName
5555 self . size = size
5656 self . classFile = classFile
57- self . livePhotoFile = livePhotoFile
57+ self . livePhoto = livePhoto
5858 self . trashbinFileName = trashbinFileName
5959 self . trashbinOriginalLocation = trashbinOriginalLocation
6060 self . trashbinDeletionTime = trashbinDeletionTime
You can’t perform that action at this time.
0 commit comments