Merge branch 'ios-release'

This commit is contained in:
Maurice Parker 2020-06-21 17:55:33 -05:00
commit 05f259da51
1 changed files with 3 additions and 1 deletions

View File

@ -256,7 +256,9 @@ private extension MasterTimelineTableViewCell {
} }
func updateAccessiblityLabel() { func updateAccessiblityLabel() {
accessibilityLabel = "\(cellData.feedName), \(cellData.title), \(cellData.summary), \(cellData.dateString)" var label = cellData.read ? "" : "\(NSLocalizedString("Unread", comment: "Unread")), "
label += "\(cellData.feedName), \(cellData.title), \(cellData.summary), \(cellData.dateString)"
accessibilityLabel = label
} }
func makeIconEmpty() { func makeIconEmpty() {