Use Post.rawComment for comment matching filters

Post.comment is not parsed yet at this stage
travisci
Floens 10 years ago
parent fe352c516f
commit d29efb53ca
  1. 2
      Clover/app/src/main/java/org/floens/chan/core/manager/FilterEngine.java

@ -159,7 +159,7 @@ public class FilterEngine {
text = post.name; text = post.name;
break; break;
case COMMENT: case COMMENT:
text = post.comment == null ? null : post.comment.toString(); text = post.rawComment;
break; break;
case ID: case ID:
text = post.id; text = post.id;

Loading…
Cancel
Save