jump in the line

This commit is contained in:
24c02 2026-01-30 16:47:54 -05:00
parent 3514a65c23
commit 6609b8f4af

View file

@ -5,7 +5,7 @@ class ExternalUploadsController < ApplicationController
def show
upload = Upload.includes(:blob).find(params[:id])
redirect_to rails_blob_url(upload.blob), allow_other_host: true
redirect_to rails_blob_url(upload.blob, disposition: :inline), allow_other_host: true
rescue ActiveRecord::RecordNotFound
head :not_found
end