diff options
author | Vivian Lim <vivlim@pm.me> | 2018-06-23 23:05:54 -0700 |
---|---|---|
committer | Vivian Lim <vivlim@pm.me> | 2018-06-23 23:05:54 -0700 |
commit | 631600394694c1f90d0ecfc1432e46c1c54ca748 (patch) | |
tree | a0fab9dd2cf8803b0d9f9f669cecd2777b8027a0 /lib | |
parent | f2badd4424a362f30409113142bfca750ec61214 (diff) | |
download | pleroma-631600394694c1f90d0ecfc1432e46c1c54ca748.tar.gz |
fixes- found that TwitterAPI.Controller adds .json suffix already
Diffstat (limited to 'lib')
-rw-r--r-- | lib/pleroma/web/router.ex | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/pleroma/web/router.ex b/lib/pleroma/web/router.ex index a502ba4d5..b65850aaa 100644 --- a/lib/pleroma/web/router.ex +++ b/lib/pleroma/web/router.ex @@ -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.json", TwitterAPI.Controller, :empty_array) + get("/qvitter/mutes", TwitterAPI.Controller, :empty_array) get("/externalprofile/show", TwitterAPI.Controller, :external_profile) end |