Reorder UTI types in FeedPasteboardWriter to be like the order in ArticlePasteboardWriter.

This commit is contained in:
Brent Simmons 2018-02-04 13:45:26 -08:00
parent 9cbd5a6217
commit 03b1440045

View File

@ -26,7 +26,7 @@ import Data
func writableTypes(for pasteboard: NSPasteboard) -> [NSPasteboard.PasteboardType] { func writableTypes(for pasteboard: NSPasteboard) -> [NSPasteboard.PasteboardType] {
return [.string, .URL, FeedPasteboardWriter.feedUTIType, FeedPasteboardWriter.feedUTIInternalType] return [FeedPasteboardWriter.feedUTIType, .URL, .string, FeedPasteboardWriter.feedUTIInternalType]
} }
func pasteboardPropertyList(forType type: NSPasteboard.PasteboardType) -> Any? { func pasteboardPropertyList(forType type: NSPasteboard.PasteboardType) -> Any? {