diff options
| author | tusooa <tusooa@kazv.moe> | 2023-07-12 21:34:19 -0400 |
|---|---|---|
| committer | tusooa <tusooa@kazv.moe> | 2023-07-17 11:27:07 -0400 |
| commit | d72486f3e4f2af9db95535f3f93e6257c675e155 (patch) | |
| tree | ad87588d58956bdd15c85f1d7cb0ec7dfebe7a23 /src/services/api/api.service.js | |
| parent | 1c2048749480800e2d44b3876378beee421a79ba (diff) | |
Implement sending quote posts
Diffstat (limited to 'src/services/api/api.service.js')
| -rw-r--r-- | src/services/api/api.service.js | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/services/api/api.service.js b/src/services/api/api.service.js index ac715678..c6bca10b 100644 --- a/src/services/api/api.service.js +++ b/src/services/api/api.service.js @@ -827,6 +827,7 @@ const postStatus = ({ poll, mediaIds = [], inReplyToStatusId, + quoteId, contentType, preview, idempotencyKey @@ -859,6 +860,9 @@ const postStatus = ({ if (inReplyToStatusId) { form.append('in_reply_to_id', inReplyToStatusId) } + if (quoteId) { + form.append('quote_id', quoteId) + } if (preview) { form.append('preview', 'true') } |
