Disables prefetching

This commit is contained in:
Stuart Breckenridge
2022-02-11 06:30:04 +08:00
parent e1f7cc80a9
commit d4a669ba1e
2 changed files with 1 additions and 6 deletions

View File

@@ -31,7 +31,6 @@ class NotificationsTableViewCell: VibrantBasicTableViewCell {
}
func configure(_ webFeed: WebFeed) {
print("NotificationTableView: configuring cell: \(webFeed.nameForDisplay)")
self.feed = webFeed
var isOn = false
if webFeed.isNotifyAboutNewArticles == nil {
@@ -44,7 +43,6 @@ class NotificationsTableViewCell: VibrantBasicTableViewCell {
notificationsLabel.text = webFeed.nameForDisplay
notificationsImageView.image = IconImageCache.shared.imageFor(webFeed.feedID!)?.image
notificationsImageView.layer.cornerRadius = 4
print("NotificationTableView: configured cell: \(webFeed.nameForDisplay)")
}
@objc