diff --git a/iOS/MasterTimeline/Cell/MasterTimelineTableViewCell.swift b/iOS/MasterTimeline/Cell/MasterTimelineTableViewCell.swift index 796d468f6..5733b02ae 100644 --- a/iOS/MasterTimeline/Cell/MasterTimelineTableViewCell.swift +++ b/iOS/MasterTimeline/Cell/MasterTimelineTableViewCell.swift @@ -200,6 +200,10 @@ private extension MasterTimelineTableViewCell { } } + func updateAccessiblityLabel() { + accessibilityLabel = "\(cellData.feedName), \(cellData.title), \(cellData.summary), \(cellData.dateString)" + } + func makeIconEmpty() { if iconView.iconImage != nil { iconView.iconImage = nil @@ -232,6 +236,7 @@ private extension MasterTimelineTableViewCell { updateUnreadIndicator() updateStarView() updateIconImage() + updateAccessiblityLabel() } }