We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3a41614 commit 5a9ba8dCopy full SHA for 5a9ba8d
Sources/CodableDatastore/Persistence/Disk Persistence/Snapshot/Snapshot.swift
@@ -106,7 +106,7 @@ extension Snapshot {
106
/// Load the manifest from disk, or create a suitable starting value if such a file does not exist.
107
private func loadManifest() throws -> SnapshotManifest {
108
do {
109
- let data = try Data(contentsOf: snapshotURL)
+ let data = try Data(contentsOf: manifestURL)
110
111
let manifest = try JSONDecoder.shared.decode(SnapshotManifest.self, from: data)
112
0 commit comments