Explorar el Código

Fix Reddit not showing author on undeleted comments

master
lint hace 3 años
padre
commit
c6a958540f
Se han modificado 1 ficheros con 5 adiciones y 2 borrados
  1. +5
    -2
      tweak/Reddit.xm

+ 5
- 2
tweak/Reddit.xm Ver fichero

@@ -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];
}

Cargando…
Cancelar
Guardar