Auto mention users in reply tweets

This commit is contained in:
Jan Oberhauser 2020-09-19 10:05:17 +02:00
parent a27e764de0
commit 2faa862ada
2 changed files with 2 additions and 0 deletions

View file

@ -1,4 +1,5 @@
export interface ITweet {
auto_populate_reply_metadata?: boolean;
display_coordinates?: boolean;
lat?: number;
long?: number;

View file

@ -112,6 +112,7 @@ export class Twitter implements INodeType {
if (additionalFields.inReplyToStatusId) {
body.in_reply_to_status_id = additionalFields.inReplyToStatusId as string;
body.auto_populate_reply_metadata = true;
}
if (additionalFields.attachments) {