diff options
author | MK Fain <mk@marykatefain.com> | 2020-08-05 02:01:27 +0000 |
---|---|---|
committer | MK Fain <mk@marykatefain.com> | 2020-08-05 02:01:27 +0000 |
commit | f341a8e142ad9d4c92afc4a97ef387df068e38e0 (patch) | |
tree | 62802b1518122e4a83ada0379ae61a9d7b1c2067 /lib | |
parent | b1b6a7dfa890a6ae16f49d2f91e2ebdbaecf1724 (diff) | |
download | pleroma-f341a8e142ad9d4c92afc4a97ef387df068e38e0.tar.gz |
Update filter_view.ex to return whole_word actual value
Diffstat (limited to 'lib')
-rw-r--r-- | lib/pleroma/web/mastodon_api/views/filter_view.ex | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/pleroma/web/mastodon_api/views/filter_view.ex b/lib/pleroma/web/mastodon_api/views/filter_view.ex index aeff646f5..c37f624e0 100644 --- a/lib/pleroma/web/mastodon_api/views/filter_view.ex +++ b/lib/pleroma/web/mastodon_api/views/filter_view.ex @@ -25,7 +25,7 @@ defmodule Pleroma.Web.MastodonAPI.FilterView do context: filter.context, expires_at: expires_at, irreversible: filter.hide, - whole_word: false + whole_word: filter.whole_word } end end |