logo

pleroma

My custom branche(s) on git.pleroma.social/pleroma/pleroma git clone https://anongit.hacktivis.me/git/pleroma.git/
commit: 0fe03fc4eef0159e3015d68d75ec42ea11f649cf
parent 0f667761a9349a852c549c0bfb846b793607e397
Author: Mark Felder <feld@feld.me>
Date:   Fri,  6 Jun 2025 13:44:24 -0700

Revert "Nodeinfo is not universally implemented"

This reverts commit b87ec4997244fc23d803948eccc778a603cf566f.

Diffstat:

Mlib/pleroma/workers/reachability_worker.ex2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/pleroma/workers/reachability_worker.ex b/lib/pleroma/workers/reachability_worker.ex @@ -13,7 +13,7 @@ defmodule Pleroma.Workers.ReachabilityWorker do @impl true def perform(%Oban.Job{args: %{"domain" => domain}}) do - case HTTP.get("https://#{domain}/") do + case HTTP.get("https://#{domain}/.well-known/nodeinfo") do {:ok, %{status: status}} when status in 200..299 -> Instances.set_reachable("https://#{domain}") :ok