From 0d9f43e10f8c8414bc16eb153601f34ee6ae5a00 Mon Sep 17 00:00:00 2001 From: Brent Simmons Date: Mon, 9 Dec 2024 21:41:07 -0800 Subject: [PATCH] Create UTType.opml the correct way. Fix #4426. --- Shared/UniformTypeIdentifiers+Extras.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Shared/UniformTypeIdentifiers+Extras.swift b/Shared/UniformTypeIdentifiers+Extras.swift index 4efadc760..ff1f91092 100644 --- a/Shared/UniformTypeIdentifiers+Extras.swift +++ b/Shared/UniformTypeIdentifiers+Extras.swift @@ -10,5 +10,5 @@ import UniformTypeIdentifiers extension UTType { - static let opml = UTType("public.opml")! + static let opml = UTType(filenameExtension: "opml", conformingTo: UTType.xml)! }