mirror of
https://github.com/lint/TFDidThatSay
synced 2025-07-01 07:26:46 +00:00
Fix Reddit not showing author on undeleted comments
This commit is contained in:
@ -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];
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user