Fix incorrect URL being used when cache busting (#34189)

This commit is contained in:
Claire 2025-03-17 17:40:28 +01:00 committed by GitHub
parent 2a5853989f
commit e30001bc80
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 20 additions and 24 deletions

View file

@ -95,7 +95,7 @@ class SuspendAccountService < BaseService
end
end
CacheBusterWorker.perform_async(attachment.path(style)) if Rails.configuration.x.cache_buster_enabled
CacheBusterWorker.perform_async(attachment.url(style)) if Rails.configuration.x.cache_buster_enabled
end
end
end

View file

@ -91,7 +91,7 @@ class UnsuspendAccountService < BaseService
end
end
CacheBusterWorker.perform_async(attachment.path(style)) if Rails.configuration.x.cache_buster_enabled
CacheBusterWorker.perform_async(attachment.url(style)) if Rails.configuration.x.cache_buster_enabled
end
end
end