Don't reject already accepted subscriptions.

This commit is contained in:
Roger Braun 2017-10-05 12:53:16 +02:00
parent 2b980dea2f
commit b4f055b604
2 changed files with 5 additions and 4 deletions

View File

@ -31,9 +31,9 @@ defmodule Pleroma.Web.Websub do
do
changeset = Changeset.change(subscription, %{state: "active"})
Repo.update(changeset)
else _e ->
changeset = Changeset.change(subscription, %{state: "rejected"})
{:ok, subscription} = Repo.update(changeset)
else e ->
Logger.debug("Couldn't verify subscription")
Logger.debug(inspect(e))
{:error, subscription}
end
end

View File

@ -46,7 +46,8 @@ defmodule Pleroma.Web.WebsubTest do
end
{:error, sub} = Websub.verify(sub, getter)
assert sub.state == "rejected"
# Keep the current state.
assert sub.state == "requested"
end
test "an incoming subscription request" do