Fix id typos

This commit is contained in:
ronaldheft 2022-07-30 18:40:30 -04:00
parent 32550a75ec
commit 76de92fe1f
2 changed files with 2 additions and 2 deletions

View file

@ -9,7 +9,7 @@ import Foundation
import RealmSwift
class LocalLibraryItem: Object, Encodable {
@Persisted(primaryKey: true) var id: String = UUID().uuidString
@Persisted(primaryKey: true) var id: String = "local_\(UUID().uuidString)"
@Persisted var basePath: String = ""
@Persisted var absolutePath: String = ""
@Persisted var contentUrl: String