Fix logic.

This commit is contained in:
Roger Braun 2017-09-13 16:05:39 +02:00
parent 49929321c7
commit e6286152b9
2 changed files with 4 additions and 4 deletions

View file

@ -43,8 +43,8 @@ defmodule Pleroma.Web.MastodonAPI.AccountView do
def render("relationship.json", %{user: user, target: target}) do def render("relationship.json", %{user: user, target: target}) do
%{ %{
id: target.id, id: target.id,
following: User.following?(target, user), following: User.following?(user, target),
followed_by: User.following?(user, target), followed_by: User.following?(target, user),
blocking: false, blocking: false,
muting: false, muting: false,
requested: false, requested: false,

View file

@ -49,8 +49,8 @@ defmodule Pleroma.Web.MastodonAPI.AccountViewTest do
expected = %{ expected = %{
id: other_user.id, id: other_user.id,
following: false, following: true,
followed_by: true, followed_by: false,
blocking: false, blocking: false,
muting: false, muting: false,
requested: false, requested: false,