Correct active state websub name.
authorRoger Braun <roger@rogerbraun.net>
Wed, 10 May 2017 16:54:43 +0000 (18:54 +0200)
committerRoger Braun <roger@rogerbraun.net>
Wed, 10 May 2017 16:54:43 +0000 (18:54 +0200)
lib/pleroma/web/websub/websub.ex
test/web/websub/websub_test.exs

index 5468758fd36e41326d1b51db8db86d8a918d45e4..2276ddeec822cebad1179f56334f4b5475541d83 100644 (file)
@@ -211,7 +211,7 @@ defmodule Pleroma.Web.Websub do
     cut_off = NaiveDateTime.add(NaiveDateTime.utc_now, delta)
 
     query = from sub in WebsubClientSubscription,
-      where: sub.valid_until < ^cut_off and sub.state == "active"
+      where: sub.valid_until < ^cut_off and sub.state == "accepted"
 
     subs = Repo.all(query)
 
index 6f228bccc110bb9574e28475ef5ff2c8d6790f67..aaed9226ef19aa1e86af3d80aa03c8a39c515360 100644 (file)
@@ -179,8 +179,8 @@ defmodule Pleroma.Web.WebsubTest do
     test "it renews subscriptions that have less than a day of time left" do
       day = 60 * 60 * 24
       now = NaiveDateTime.utc_now
-      still_good = insert(:websub_client_subscription, %{valid_until: NaiveDateTime.add(now, 2 * day), topic: "http://example.org/still_good", state: "active"})
-      needs_refresh = insert(:websub_client_subscription, %{valid_until: NaiveDateTime.add(now, day - 100), topic: "http://example.org/needs_refresh", state: "active"})
+      still_good = insert(:websub_client_subscription, %{valid_until: NaiveDateTime.add(now, 2 * day), topic: "http://example.org/still_good", state: "accepted"})
+      needs_refresh = insert(:websub_client_subscription, %{valid_until: NaiveDateTime.add(now, day - 100), topic: "http://example.org/needs_refresh", state: "accepted"})
 
       refresh = Websub.refresh_subscriptions()