Remove unnecessary string creation

This commit is contained in:
Maurice Parker 2020-10-24 21:39:15 -05:00
parent 3e9f208dff
commit 7db18d2366
1 changed files with 1 additions and 1 deletions

View File

@ -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 {