Fix file metadata save

This commit is contained in:
Christoph Hagen
2026-01-08 22:40:25 +01:00
parent 07ba77e337
commit 57fa5aa3dd
3 changed files with 13 additions and 0 deletions

View File

@@ -235,3 +235,10 @@ enum FileType: String {
}
}
}
extension FileType: CustomStringConvertible {
var description: String {
rawValue
}
}