From: Vivian Lim Date: Sun, 24 Jun 2018 05:21:39 +0000 (-0700) Subject: return empty array for api/qvitter/mutes.json queries instead of html X-Git-Url: http://git.squeep.com/?a=commitdiff_plain;h=f2badd4424a362f30409113142bfca750ec61214;p=akkoma return empty array for api/qvitter/mutes.json queries instead of html --- diff --git a/lib/pleroma/web/router.ex b/lib/pleroma/web/router.ex index 13bd393ab..a502ba4d5 100644 --- a/lib/pleroma/web/router.ex +++ b/lib/pleroma/web/router.ex @@ -269,6 +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.json", TwitterAPI.Controller, :empty_array) get("/externalprofile/show", TwitterAPI.Controller, :external_profile) end