mirror of
https://github.com/discourse/discourse.git
synced 2025-02-08 04:13:19 +08:00
![David Taylor](/assets/img/avatar_default.png)
This commit will also trigger a background rebake for all existing posts with internal oneboxes
19 lines
454 B
Ruby
19 lines
454 B
Ruby
# frozen_string_literal: true
|
|
|
|
class QueueInternalOneboxRebake < ActiveRecord::Migration[6.1]
|
|
def up
|
|
# Prior to this fix, internal oneboxes were bypassing the CDN for avatar URLs.
|
|
# If a site has a CDN, queue up a rebake in the background
|
|
if GlobalSetting.cdn_url
|
|
execute <<~SQL
|
|
UPDATE posts SET baked_version = 0
|
|
WHERE cooked LIKE '%src="/user_avatar/%'
|
|
SQL
|
|
end
|
|
end
|
|
|
|
def down
|
|
# Do nothing
|
|
end
|
|
end
|