Make swift script more lenient

This commit is contained in:
Tim 2023-01-19 19:52:06 +00:00
parent c8e291d3f5
commit 56fd60d774
No known key found for this signature in database
GPG Key ID: 20C7BF3D01EBE22E
1 changed files with 4 additions and 4 deletions

View File

@ -8,11 +8,11 @@ struct SearchIndex: Codable {
}
struct SearchIndexConfig: Codable {
let indexing: String
let indexing: String?
let lang: [String]
let minSearchLength: Int
let prebuildIndex: Bool
let separator: String
let minSearchLength: Int?
let prebuildIndex: Bool?
let separator: String?
enum CodingKeys: String, CodingKey {
case indexing