From 827f4e0bac6536a0bcd5a1d979e2ba1678eec1e1 Mon Sep 17 00:00:00 2001 From: Daniel Nitsikopoulos Date: Sun, 11 Feb 2024 10:50:34 +1100 Subject: [PATCH] Fix sending of webmentions --- lib/adamantium/jobs/send_web_mentions.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/adamantium/jobs/send_web_mentions.rb b/lib/adamantium/jobs/send_web_mentions.rb index bbdfafc..1ab7a38 100644 --- a/lib/adamantium/jobs/send_web_mentions.rb +++ b/lib/adamantium/jobs/send_web_mentions.rb @@ -11,7 +11,7 @@ module Adamantium source = post_url links = link_finder.call(post_content) links.each do |target| - HTTParty.post(settings.webmention_service, { + HTTParty.post(settings.webmention_url, { token: settings.webmention_token, source: source, target: target