From 3514a65c232b7f235ab58c4e62891350c7c7b4e7 Mon Sep 17 00:00:00 2001 From: 24c02 <163450896+24c02@users.noreply.github.com> Date: Fri, 30 Jan 2026 16:43:45 -0500 Subject: [PATCH] foof --- app/jobs/process_slack_file_upload_job.rb | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/app/jobs/process_slack_file_upload_job.rb b/app/jobs/process_slack_file_upload_job.rb index a1bb961..a5cc6f2 100644 --- a/app/jobs/process_slack_file_upload_job.rb +++ b/app/jobs/process_slack_file_upload_job.rb @@ -108,6 +108,8 @@ class ProcessSlackFileUploadJob < ApplicationJob channel: @channel_id, thread_ts: @message_ts, text: "Yeah! Here's yo' links", + unfurl_links: false, + unfurl_media: false, **render_slack_template("upload_success", uploads: uploads, slack_user_id: @slack_user_id) ) end @@ -155,6 +157,8 @@ class ProcessSlackFileUploadJob < ApplicationJob channel: @channel_id, thread_ts: @message_ts, text: "Something went wrong uploading your file", + unfurl_links: false, + unfurl_media: false, **render_slack_template("upload_error", flavor_message: pick_error_message, error_message: error.message, @@ -179,7 +183,7 @@ class ProcessSlackFileUploadJob < ApplicationJob end def reply_in_thread(text) - @slack.chat_postMessage(channel: @channel_id, thread_ts: @message_ts, text: text) + @slack.chat_postMessage(channel: @channel_id, thread_ts: @message_ts, text: text, unfurl_links: false, unfurl_media: false) end def render_slack_template(template, locals = {})