From 1d169bec6745dd6218b303883195eb3fe057d854 Mon Sep 17 00:00:00 2001 From: Shadowfacts Date: Wed, 22 Jan 2020 22:30:05 -0500 Subject: [PATCH] Fix statuses showing incorrect timestamps when switching accounts --- Tusker/Views/Status/TimelineStatusTableViewCell.swift | 1 - 1 file changed, 1 deletion(-) diff --git a/Tusker/Views/Status/TimelineStatusTableViewCell.swift b/Tusker/Views/Status/TimelineStatusTableViewCell.swift index 863b37bb..44a9680b 100644 --- a/Tusker/Views/Status/TimelineStatusTableViewCell.swift +++ b/Tusker/Views/Status/TimelineStatusTableViewCell.swift @@ -95,7 +95,6 @@ class TimelineStatusTableViewCell: BaseStatusTableViewCell { } func updateTimestamp() { - guard superview != nil else { return } guard let status = mastodonController.cache.status(for: statusID) else { fatalError("Missing cached status \(statusID!)") } timestampLabel.text = status.createdAt.timeAgoString()