fix: Do not sort user tweets since it's in reverse-chronological order

This commit is contained in:
Faruk AYDIN
2022-10-15 11:38:10 +02:00
committed by Ali BARIN
parent 39792d25d8
commit b5e5ae7321
3 changed files with 5 additions and 12 deletions

View File

@@ -20,7 +20,6 @@ export default {
async run($: IGlobalVariable) {
return await getUserTweets($, {
currentUser: true,
lastInternalId: $.flow.lastInternalId,
});
},
};

View File

@@ -32,8 +32,6 @@ export default {
async run($: IGlobalVariable) {
return await getUserTweets($, {
currentUser: false,
userId: $.step.parameters.username as string,
lastInternalId: $.flow.lastInternalId,
});
},
};