1
0
miroir de https://github.com/lint/TFDidThatSay synchronisé 2026-09-14 11:50:30 +00:00

Fix Reddit not showing author on undeleted comments

Cette révision appartient à :
lint
2021-02-08 14:15:04 -05:00
Parent 2b79815c7e
révision c6a958540f

Voir le fichier

@ -185,11 +185,14 @@ int secondVersionPart = 0;
[comment setBodyText:body]; [comment setBodyText:body];
[comment setBodyRichTextAttributed:bodyMutableAttributedText]; [comment setBodyRichTextAttributed:bodyMutableAttributedText];
if (secondVersionPart <= 39) { if ((firstVersionPart == 2020 && secondVersionPart <= 39) || firstVersionPart == 4) {
[comment setBodyAttributedText:bodyMutableAttributedText]; [comment setBodyAttributedText:bodyMutableAttributedText];
} }
[[commentTreeNode commentTreeHeaderNode] updateContentViewsForData:comment]; CommentTreeHeaderNode *headerNode = [commentTreeNode commentTreeHeaderNode];
[headerNode updateContentViewsForData:comment];
[headerNode configureNodes];
[bodyMutableAttributedText release]; [bodyMutableAttributedText release];
} }