Generate first tag pages

This commit is contained in:
Christoph Hagen
2024-12-09 17:47:03 +01:00
parent 4f08526978
commit 8183bc4903
35 changed files with 719 additions and 1105 deletions

View File

@ -55,7 +55,9 @@ struct FileDetailView: View {
}
private func setNewId() {
guard file.content.storage.move(file: file.id, to: newId) else {
do {
try file.content.storage.move(file: file.id, to: newId)
} catch {
print("Failed to move file \(file.id)")
newId = file.id
return