Use photos var

This commit is contained in:
2023-02-04 14:27:06 +11:00
parent 6d5fe4371f
commit adca0f0a58

View File

@@ -28,8 +28,8 @@ module Adamantium
key = Digest::MD5.hexdigest text_with_tags
mastodon_token = settings.mastodon_token
mastodon_server = settings.mastodon_server.split("@").first
logger.info("Photos: #{post[:photo].inspect}")
media_ids = post[:photo]&.map do |photo|
logger.info("Photos: #{post[:photos].inspect}")
media_ids = post[:photos]&.map do |photo|
file = Tempfile.new(SecureRandom.uuid)
file.write(URI.open(photo["value"]).read)
file.rewind