return unquoted empty array from /api/qvitter/mutes.json

This commit is contained in:
Vivian Lim 2018-06-23 23:20:30 -07:00
parent 6316003946
commit 1299bccc7d
3 changed files with 6 additions and 2 deletions

View File

@ -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

View File

@ -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

View File

@ -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