mirror of
https://github.com/accelforce/Yuito
synced 2025-01-11 07:12:08 +01:00
fix regex filter not affecting spoilertext
This commit is contained in:
parent
c452b8f281
commit
ef9e931428
@ -869,7 +869,7 @@ public class TimelineFragment extends SFragment implements
|
||||
if ((status.getInReplyToId() != null && filterRemoveReplies)
|
||||
|| (status.getReblog() != null && filterRemoveReblogs)
|
||||
|| (filterRemoveRegex && (filterRemoveRegexMatcher.reset(status.getContent()).find()
|
||||
|| (!status.getSpoilerText().isEmpty() && filterRemoveRegexMatcher.reset(status.getContent()).find())))) {
|
||||
|| (!status.getSpoilerText().isEmpty() && filterRemoveRegexMatcher.reset(status.getSpoilerText()).find())))) {
|
||||
it.remove();
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user