mirror of
https://github.com/Ranchero-Software/NetNewsWire
synced 2025-08-12 06:26:36 +00:00
Ignores files in __MACOSX folder
This commit is contained in:
committed by
Brent Simmons
parent
4289518e36
commit
23af34b616
@@ -75,6 +75,10 @@ public class ArticleThemeDownloader {
|
||||
private func findThemeFile(in searchPath: String) -> String? {
|
||||
if let directoryContents = FileManager.default.enumerator(atPath: searchPath) {
|
||||
while let file = directoryContents.nextObject() as? String {
|
||||
if file.localizedCaseInsensitiveContains("__MACOSX") {
|
||||
logger.debug("Ignoring theme file in __MACOSX folder.")
|
||||
continue
|
||||
}
|
||||
if file.hasSuffix(".nnwtheme") {
|
||||
return file
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user