Re-add missing transaction around status-from-OStatus creation (#4603)
This commit is contained in:
parent
a855956185
commit
4fcbb1f838
1 changed files with 21 additions and 17 deletions
|
@ -16,24 +16,28 @@ class OStatus::Activity::Creation < OStatus::Activity::Base
|
||||||
|
|
||||||
return [status, false] unless status.nil?
|
return [status, false] unless status.nil?
|
||||||
|
|
||||||
status = Status.create!(
|
cached_reblog = reblog
|
||||||
uri: id,
|
|
||||||
url: url,
|
|
||||||
account: @account,
|
|
||||||
reblog: reblog,
|
|
||||||
text: content,
|
|
||||||
spoiler_text: content_warning,
|
|
||||||
created_at: published,
|
|
||||||
reply: thread?,
|
|
||||||
language: content_language,
|
|
||||||
visibility: visibility_scope,
|
|
||||||
conversation: find_or_create_conversation,
|
|
||||||
thread: thread? ? find_status(thread.first) : nil
|
|
||||||
)
|
|
||||||
|
|
||||||
save_mentions(status)
|
ApplicationRecord.transaction do
|
||||||
save_hashtags(status)
|
status = Status.create!(
|
||||||
save_media(status)
|
uri: id,
|
||||||
|
url: url,
|
||||||
|
account: @account,
|
||||||
|
reblog: cached_reblog,
|
||||||
|
text: content,
|
||||||
|
spoiler_text: content_warning,
|
||||||
|
created_at: published,
|
||||||
|
reply: thread?,
|
||||||
|
language: content_language,
|
||||||
|
visibility: visibility_scope,
|
||||||
|
conversation: find_or_create_conversation,
|
||||||
|
thread: thread? ? find_status(thread.first) : nil
|
||||||
|
)
|
||||||
|
|
||||||
|
save_mentions(status)
|
||||||
|
save_hashtags(status)
|
||||||
|
save_media(status)
|
||||||
|
end
|
||||||
|
|
||||||
if thread? && status.thread.nil?
|
if thread? && status.thread.nil?
|
||||||
Rails.logger.debug "Trying to attach #{status.id} (#{id}) to #{thread.first}"
|
Rails.logger.debug "Trying to attach #{status.id} (#{id}) to #{thread.first}"
|
||||||
|
|
Loading…
Reference in a new issue