diff options
author | Eugen Rochko <eugen@zeonfederated.com> | 2019-01-06 12:03:27 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-01-06 12:03:27 +0100 |
commit | 1cbdf8d218dcd07889d14e4f5f22a4339bddb879 (patch) | |
tree | f2f6e11a663220a706f6069987f1aa708ab831f4 /app/services | |
parent | 8ad57a0426402831373f9f45705774f875b5b65d (diff) |
Fix wrong param name in scheduled statuses and return params in API (#9725)
The database column and API param are called in_reply_to_id, not in_reply_to_status_id, so it makes no sense to encode it that way
Diffstat (limited to 'app/services')
-rw-r--r-- | app/services/post_status_service.rb | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/app/services/post_status_service.rb b/app/services/post_status_service.rb index 07fd969e5..260765edf 100644 --- a/app/services/post_status_service.rb +++ b/app/services/post_status_service.rb @@ -167,10 +167,10 @@ class PostStatusService < BaseService def scheduled_options @options.tap do |options_hash| - options_hash[:in_reply_to_status_id] = options_hash.delete(:thread)&.id - options_hash[:application_id] = options_hash.delete(:application)&.id - options_hash[:scheduled_at] = nil - options_hash[:idempotency] = nil + options_hash[:in_reply_to_id] = options_hash.delete(:thread)&.id + options_hash[:application_id] = options_hash.delete(:application)&.id + options_hash[:scheduled_at] = nil + options_hash[:idempotency] = nil end end end |