From 04f771975c38833975c7bef499831e79174292ae Mon Sep 17 00:00:00 2001 From: Stuart Breckenridge Date: Fri, 21 Jan 2022 08:53:06 +0800 Subject: [PATCH] UserNotificationManager Removes deprecated `summaryArgument` and `summaryArgumentCount` from notification content. --- Shared/UserNotifications/UserNotificationManager.swift | 2 -- 1 file changed, 2 deletions(-) diff --git a/Shared/UserNotifications/UserNotificationManager.swift b/Shared/UserNotifications/UserNotificationManager.swift index d8ed11eeb..7707b3c2f 100644 --- a/Shared/UserNotifications/UserNotificationManager.swift +++ b/Shared/UserNotifications/UserNotificationManager.swift @@ -53,8 +53,6 @@ private extension UserNotificationManager { } content.body = ArticleStringFormatter.truncatedSummary(article) content.threadIdentifier = webFeed.webFeedID - content.summaryArgument = "\(webFeed.nameForDisplay)" - content.summaryArgumentCount = 1 content.sound = UNNotificationSound.default content.userInfo = [UserInfoKey.articlePath: article.pathUserInfo] content.categoryIdentifier = "NEW_ARTICLE_NOTIFICATION_CATEGORY"