mirror of
https://akkoma.dev/AkkomaGang/akkoma.git
synced 2024-11-10 10:09:02 +00:00
return unquoted empty array from /api/qvitter/mutes.json
This commit is contained in:
parent
6316003946
commit
1299bccc7d
|
@ -269,7 +269,7 @@ defmodule Pleroma.Web.Router do
|
|||
get("/friendships/no_retweets/ids", TwitterAPI.Controller, :empty_array)
|
||||
|
||||
get("/mutes/users/ids", TwitterAPI.Controller, :empty_array)
|
||||
get("/qvitter/mutes", TwitterAPI.Controller, :empty_array)
|
||||
get("/qvitter/mutes", TwitterAPI.Controller, :raw_empty_array)
|
||||
|
||||
get("/externalprofile/show", TwitterAPI.Controller, :external_profile)
|
||||
end
|
||||
|
|
|
@ -404,6 +404,10 @@ defmodule Pleroma.Web.TwitterAPI.Controller do
|
|||
json(conn, Jason.encode!([]))
|
||||
end
|
||||
|
||||
def raw_empty_array(conn, _params) do
|
||||
json(conn, [])
|
||||
end
|
||||
|
||||
def update_profile(%{assigns: %{user: user}} = conn, params) do
|
||||
params =
|
||||
if bio = params["description"] do
|
||||
|
|
|
@ -506,7 +506,7 @@ defmodule Pleroma.Web.TwitterAPI.ControllerTest do
|
|||
|> get("/api/qvitter/mutes.json")
|
||||
current_user = Repo.get(User, current_user.id)
|
||||
|
||||
assert "[]" = json_response(conn, 200)
|
||||
assert [] = json_response(conn, 200)
|
||||
end
|
||||
end
|
||||
|
||||
|
|
Loading…
Reference in a new issue