1
0
mirror of https://git.pleroma.social/sjw/pleroma.git synced 2025-01-14 05:41:51 +01:00

AccountView: sensitive is supposed to be a boolean, not a string

This commit is contained in:
Martin Kühl 2018-08-29 00:51:25 +02:00
parent 2e2f458705
commit b60d232719
2 changed files with 2 additions and 2 deletions

View File

@ -47,7 +47,7 @@ defmodule Pleroma.Web.MastodonAPI.AccountView do
source: %{
note: "",
privacy: user_info.default_scope,
sensitive: "false"
sensitive: false
}
}
end

View File

@ -52,7 +52,7 @@ defmodule Pleroma.Web.MastodonAPI.AccountViewTest do
source: %{
note: "",
privacy: "public",
sensitive: "false"
sensitive: false
}
}