From 7db18d236655683cd7add5af1d952547cd649a21 Mon Sep 17 00:00:00 2001 From: Maurice Parker Date: Sat, 24 Oct 2020 21:39:15 -0500 Subject: [PATCH] Remove unnecessary string creation --- .../Sources/Account/ReaderAPI/ReaderAPIAccountDelegate.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Account/Sources/Account/ReaderAPI/ReaderAPIAccountDelegate.swift b/Account/Sources/Account/ReaderAPI/ReaderAPIAccountDelegate.swift index 8971df98b..4cc99780a 100644 --- a/Account/Sources/Account/ReaderAPI/ReaderAPIAccountDelegate.swift +++ b/Account/Sources/Account/ReaderAPI/ReaderAPIAccountDelegate.swift @@ -635,7 +635,7 @@ private extension ReaderAPIAccountDelegate { os_log(.debug, log: log, "Syncing feeds with %ld subscriptions.", subscriptions.count) - let subFeedIds = subscriptions.map { String($0.feedID) } + let subFeedIds = subscriptions.map { $0.feedID } // Remove any feeds that are no longer in the subscriptions if let folders = account.folders {