2
0

Fix scheduled quote posts being posted as non-quote posts (#36550)

This commit is contained in:
Claire
2025-10-21 18:00:40 +02:00
committed by GitHub
parent aba30a85be
commit 17eb1a7e66
2 changed files with 5 additions and 0 deletions

View File

@@ -23,6 +23,7 @@ class PublishScheduledStatusWorker
options.tap do |options_hash|
options_hash[:application] = Doorkeeper::Application.find(options_hash.delete(:application_id)) if options[:application_id]
options_hash[:thread] = Status.find(options_hash.delete(:in_reply_to_id)) if options_hash[:in_reply_to_id]
options_hash[:quoted_status] = Status.find(options_hash.delete(:quoted_status_id)) if options_hash[:quoted_status_id]
end
end
end

View File

@@ -13,8 +13,12 @@ RSpec.describe PublishScheduledStatusWorker do
end
context 'when the account is not disabled' do
let(:user) { Fabricate(:user) }
let(:scheduled_status) { Fabricate(:scheduled_status, account: user.account, params: { text: 'Hello world, future!', quoted_status_id: Fabricate(:status, account: user.account).id }) }
it 'creates a status and removes scheduled record' do
expect(scheduled_status.account.statuses.first.text).to eq 'Hello world, future!'
expect(scheduled_status.account.statuses.first.quote).to_not be_nil
expect(ScheduledStatus.find_by(id: scheduled_status.id)).to be_nil
end