From 9794cc9a59abfea826d4f5bc687dc8d8a581de4c Mon Sep 17 00:00:00 2001 From: Brent Simmons Date: Sat, 24 Feb 2024 21:21:18 -0800 Subject: [PATCH] =?UTF-8?q?Add=20comment=20about=20deprecation=20warning?= =?UTF-8?q?=20that=20we=20can=E2=80=99t=20do=20anything=20about.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Timeline/TimelineViewController+ContextualMenus.swift | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Mac/MainWindow/Timeline/TimelineViewController+ContextualMenus.swift b/Mac/MainWindow/Timeline/TimelineViewController+ContextualMenus.swift index dd83afdcb..40579be79 100644 --- a/Mac/MainWindow/Timeline/TimelineViewController+ContextualMenus.swift +++ b/Mac/MainWindow/Timeline/TimelineViewController+ContextualMenus.swift @@ -200,6 +200,9 @@ private extension TimelineViewController { let sortedArticles = articles.sortedByDate(.orderedAscending) let items = sortedArticles.map { ArticlePasteboardWriter(article: $0) } + + // There’s no replacement for the deprecated `NSSharingService.sharingServices` — + // and we need it in order to create a custom menu. let standardServices = NSSharingService.sharingServices(forItems: items) let customServices = SharingServicePickerDelegate.customSharingServices(for: items) let services = standardServices + customServices