Merge branch 'fix/2336-mastoapi-ws-posts-dropping' into 'develop'
Fix mastoapi ws posts dropping Closes #2336 See merge request pleroma/pleroma!3198
This commit is contained in:
commit
8b8c317c0f
15 changed files with 47 additions and 28 deletions
|
|
@ -131,7 +131,7 @@ defmodule Pleroma.Web.Feed.TagControllerTest do
|
|||
'#{Pleroma.Web.base_url()}/tags/pleromaart.rss'
|
||||
|
||||
assert xpath(xml, ~x"//channel/webfeeds:logo/text()") ==
|
||||
'#{Pleroma.Web.base_url()}/static/logo.png'
|
||||
'#{Pleroma.Web.base_url()}/static/logo.svg'
|
||||
|
||||
assert xpath(xml, ~x"//channel/item/title/text()"l) == [
|
||||
'42 This is :moominmamm...',
|
||||
|
|
|
|||
|
|
@ -50,7 +50,7 @@ defmodule Pleroma.Web.Preload.Providers.InstanceTest do
|
|||
"/api/pleroma/frontend_configurations" => fe_configs
|
||||
} do
|
||||
assert %{
|
||||
pleroma_fe: %{background: "/images/city.jpg", logo: "/static/logo.png"}
|
||||
pleroma_fe: %{background: "/images/city.jpg", logo: "/static/logo.svg"}
|
||||
} = fe_configs
|
||||
end
|
||||
end
|
||||
|
|
|
|||
|
|
@ -28,7 +28,7 @@ defmodule Pleroma.Workers.Cron.NewUsersDigestWorkerTest do
|
|||
assert email.html_body =~ user.nickname
|
||||
assert email.html_body =~ user2.nickname
|
||||
assert email.html_body =~ "cofe"
|
||||
assert email.html_body =~ "#{Pleroma.Web.Endpoint.url()}/static/logo.png"
|
||||
assert email.html_body =~ "#{Pleroma.Web.Endpoint.url()}/static/logo.svg"
|
||||
end
|
||||
|
||||
test "it doesn't fail when admin has no email" do
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue