Remove tag links for now, they break some regular links.
[akkoma] / lib / pleroma / web / websub / websub.ex
index 17fc42cb53065460f429b79211881c73026adc99..6bbf13130dfb79e91fcdcfa0697620334798bf0a 100644 (file)
@@ -212,7 +212,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 == "accepted"
+      where: sub.valid_until < ^cut_off
 
     subs = Repo.all(query)