Create UTType.opml the correct way. Fix #4426.

This commit is contained in:
Brent Simmons
2024-12-09 21:41:07 -08:00
parent e16dfaa947
commit 0d9f43e10f

View File

@@ -10,5 +10,5 @@ import UniformTypeIdentifiers
extension UTType {
static let opml = UTType("public.opml")!
static let opml = UTType(filenameExtension: "opml", conformingTo: UTType.xml)!
}