mirror of
https://akkoma.dev/AkkomaGang/akkoma.git
synced 2024-11-11 03:39:13 +00:00
fix csp-induced HTML match error
This commit is contained in:
parent
426f4271c2
commit
20e3cb2b25
1 changed files with 4 additions and 3 deletions
|
@ -184,14 +184,15 @@ defmodule Pleroma.Web.Feed.UserControllerTest do
|
||||||
note_activity = insert(:note_activity)
|
note_activity = insert(:note_activity)
|
||||||
user = User.get_cached_by_ap_id(note_activity.data["actor"])
|
user = User.get_cached_by_ap_id(note_activity.data["actor"])
|
||||||
|
|
||||||
|
%{assigns: %{csp_nonce: nonce}} = resp_conn = get(conn, "/users/#{user.nickname}")
|
||||||
|
|
||||||
response =
|
response =
|
||||||
conn
|
resp_conn
|
||||||
|> get("/users/#{user.nickname}")
|
|
||||||
|> response(200)
|
|> response(200)
|
||||||
|
|
||||||
assert response ==
|
assert response ==
|
||||||
Pleroma.Web.Fallback.RedirectController.redirector_with_meta(
|
Pleroma.Web.Fallback.RedirectController.redirector_with_meta(
|
||||||
conn,
|
assign(conn, :csp_nonce, nonce),
|
||||||
%{user: user}
|
%{user: user}
|
||||||
).resp_body
|
).resp_body
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in a new issue