1
0
espelhamento de https://github.com/lint/TFDidThatSay sincronizado 2025-06-30 15:06:46 +00:00

Fix Reddit not showing author on undeleted comments

Esse commit está contido em:
lint
2021-02-08 14:15:04 -05:00
commit c6a958540f

Ver arquivo

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