changelog for filter whole_word fix
authorMary Kate <mk@marykatefain.com>
Wed, 5 Aug 2020 20:39:11 +0000 (15:39 -0500)
committerMary Kate <mk@marykatefain.com>
Wed, 5 Aug 2020 20:41:35 +0000 (15:41 -0500)
CHANGELOG.md
test/web/mastodon_api/controllers/filter_controller_test.exs

index de017e30aab54b6bf99a59117d97f3aba5c3c817..572f9e84bab9e9bbcfc36a3a8425b6ccfcd5a609 100644 (file)
@@ -102,6 +102,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
 - Fix CSP policy generation to include remote Captcha services
 - Fix edge case where MediaProxy truncates media, usually caused when Caddy is serving content for the other Federated instance.
 - Emoji Packs could not be listed when instance was set to `public: false`
+- Fix whole_word always returning false on filter get requests
 
 ## [Unreleased (patch)]
 
index 6e94150b41998dbc736955813a031b194633616a..0d426ec342ccf788f7b3d36b02d991d8891cdf37 100644 (file)
@@ -64,7 +64,7 @@ defmodule Pleroma.Web.MastodonAPI.FilterControllerTest do
   test "get a filter" do
     %{user: user, conn: conn} = oauth_access(["read:filters"])
 
-    # check whole_word true
+    # check whole_word false
     query = %Pleroma.Filter{
       user_id: user.id,
       filter_id: 2,
@@ -80,7 +80,7 @@ defmodule Pleroma.Web.MastodonAPI.FilterControllerTest do
     assert response = json_response_and_validate_schema(conn, 200)
     assert response["whole_word"] == false
 
-    # check whole_word false
+    # check whole_word true
     %{user: user, conn: conn} = oauth_access(["read:filters"])
 
     query = %Pleroma.Filter{