mirror of
https://github.com/omnivore-app/omnivore.git
synced 2026-03-11 08:54:26 +00:00
lint
This commit is contained in:
parent
87361a9273
commit
06c1e09505
1 changed files with 4 additions and 1 deletions
|
|
@ -160,7 +160,10 @@ export class TwitterHandler extends ContentHandler {
|
|||
|
||||
const tweets = [tweet]
|
||||
// check if tweet is a thread
|
||||
const thread = await getTweetThread(tweetData.conversation_id, author.username)
|
||||
const thread = await getTweetThread(
|
||||
tweetData.conversation_id,
|
||||
author.username
|
||||
)
|
||||
if (thread.meta.result_count > 0) {
|
||||
// tweets are in reverse chronological order in the thread
|
||||
for (const t of thread.data.reverse()) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue