We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents de28c3f + 6e10918 commit 0ac3231Copy full SHA for 0ac3231
Sources/Ignite/Framework/Article.swift
@@ -158,7 +158,7 @@ public struct Article {
158
self.path = metadata["path"] as? String ?? deployPath
159
160
// Save the first subfolder in the path as the article's type
161
- let pathParts = path.split(separator: "/") // removes empty
+ let pathParts = path.split(separator: "/").map { String($0) } // removes empty
162
if pathParts.count > 1 { // no type if not in subdirectory
163
metadata["type"] = pathParts[0]
164
}
0 commit comments