Fix Mastodon URL
This commit is contained in:
@@ -23,7 +23,7 @@ module Adamantium
|
|||||||
mastodon_token = settings.mastodon_token
|
mastodon_token = settings.mastodon_token
|
||||||
mastodon_server = settings.mastodon_server.split("@").first
|
mastodon_server = settings.mastodon_server.split("@").first
|
||||||
|
|
||||||
response = HTTParty.post(mastodon_server, {
|
response = HTTParty.post("#{mastodon_server}api/v1/statuses", {
|
||||||
headers: {
|
headers: {
|
||||||
"Idempotency-Key": key,
|
"Idempotency-Key": key,
|
||||||
Authorization: "Bearer #{mastodon_token}"
|
Authorization: "Bearer #{mastodon_token}"
|
||||||
@@ -33,7 +33,7 @@ module Adamantium
|
|||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
if response.code > 200
|
if response.code >= 200 && response.code < 300
|
||||||
status = response.message
|
status = response.message
|
||||||
logger.info("Syndicated to Mastodon: #{response.message}")
|
logger.info("Syndicated to Mastodon: #{response.message}")
|
||||||
Success("#{mastodon_server}/#{status[:id]}")
|
Success("#{mastodon_server}/#{status[:id]}")
|
||||||
|
Reference in New Issue
Block a user