Merge branch 'mac-candidate'
This commit is contained in:
commit
fe5570fbea
@ -934,8 +934,7 @@ private extension Account {
|
|||||||
// Now we loop through articles exactly once. This makes a huge difference.
|
// Now we loop through articles exactly once. This makes a huge difference.
|
||||||
|
|
||||||
var unreadCountStorage = [String: Int]() // [FeedID: Int]
|
var unreadCountStorage = [String: Int]() // [FeedID: Int]
|
||||||
articles.forEach { (article) in
|
for article in articles where !article.status.read {
|
||||||
precondition(!article.status.read)
|
|
||||||
unreadCountStorage[article.feedID, default: 0] += 1
|
unreadCountStorage[article.feedID, default: 0] += 1
|
||||||
}
|
}
|
||||||
feeds.forEach { (feed) in
|
feeds.forEach { (feed) in
|
||||||
|
@ -13,7 +13,7 @@ import UIKit
|
|||||||
#elseif os(watchOS)
|
#elseif os(watchOS)
|
||||||
import WatchKit
|
import WatchKit
|
||||||
#elseif os(OSX)
|
#elseif os(OSX)
|
||||||
import Cocoa
|
import AppKit
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
public class ColorHash {
|
public class ColorHash {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user