From 39e847bda81aeb06f3f867c6378e3d3ec650ba08 Mon Sep 17 00:00:00 2001 From: Shadowfacts Date: Tue, 16 Jun 2020 22:01:01 -0400 Subject: [PATCH] Fix reblog label showing incorrect account --- Tusker/Views/Status/TimelineStatusTableViewCell.swift | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Tusker/Views/Status/TimelineStatusTableViewCell.swift b/Tusker/Views/Status/TimelineStatusTableViewCell.swift index 7a2b1327..0b79b5ce 100644 --- a/Tusker/Views/Status/TimelineStatusTableViewCell.swift +++ b/Tusker/Views/Status/TimelineStatusTableViewCell.swift @@ -66,10 +66,11 @@ class TimelineStatusTableViewCell: BaseStatusTableViewCell { if let rebloggedStatus = status.reblog { reblogStatusID = statusID rebloggerID = status.account.id - status = rebloggedStatus - realStatusID = rebloggedStatus.id reblogLabel.isHidden = false updateRebloggerLabel(reblogger: status.account) + + status = rebloggedStatus + realStatusID = rebloggedStatus.id } else { reblogStatusID = nil rebloggerID = nil