diff options
author | multiple creatures <dev@multiple-creature.party> | 2019-08-02 20:12:59 -0500 |
---|---|---|
committer | multiple creatures <dev@multiple-creature.party> | 2019-08-02 20:12:59 -0500 |
commit | cf333d3699635258e57b7792ee5f688c169ecd01 (patch) | |
tree | 698923ccf48adb0afbf4957993a564fdb11ba260 | |
parent | fc2e81c93fbb23ffaa8576b7b03d2333ca563b7e (diff) |
unbreak - `tags_regex` -> `regex`
-rw-r--r-- | app/helpers/filter_helper.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/helpers/filter_helper.rb b/app/helpers/filter_helper.rb index 1eb05ca17..3de27168d 100644 --- a/app/helpers/filter_helper.rb +++ b/app/helpers/filter_helper.rb @@ -30,7 +30,7 @@ module FilterHelper matched = false matched = true unless regex.match(status_text).nil? matched = true unless spoiler_text.blank? || regex.match(spoiler_text).nil? - matched = true unless tags.empty? || tags_regex.match(tags).nil? + matched = true unless tags.empty? || regex.match(tags).nil? if matched filter_thread(receiver_id, status.conversation_id) if filter.thread |