Commit
·
fb23f68
1
Parent(s):
fc497aa
🐛 Fix last mention
Browse files
server.ts
CHANGED
@@ -73,6 +73,8 @@ async function lookupTweets() {
|
|
73 |
lastMention = lookups.data[0].created_at;
|
74 |
return lookupTweets();
|
75 |
}
|
|
|
|
|
76 |
const tweets = lookups.data.filter((tweet) => tweet.attachments?.media_keys.length === 1);
|
77 |
console.log(lastMention);
|
78 |
|
|
|
73 |
lastMention = lookups.data[0].created_at;
|
74 |
return lookupTweets();
|
75 |
}
|
76 |
+
lastMention = lookups.data[0].created_at;
|
77 |
+
|
78 |
const tweets = lookups.data.filter((tweet) => tweet.attachments?.media_keys.length === 1);
|
79 |
console.log(lastMention);
|
80 |
|