mirror of
https://github.com/Ranchero-Software/NetNewsWire
synced 2025-08-12 06:26:36 +00:00
Remove unnecessary string creation
This commit is contained in:
@@ -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 {
|
||||
|
||||
Reference in New Issue
Block a user