We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ffba2b1 commit 3bd55e2Copy full SHA for 3bd55e2
bin/util.js
@@ -12,7 +12,8 @@ const connect = () =>
12
13
const isBot = userAgent => {
14
const result =
15
- isbot(userAgent) || ['CFNetwork'].some(str => userAgent.includes(str))
+ isbot(userAgent) ||
16
+ ['CFNetwork', 'retweet'].some(str => userAgent.includes(str))
17
if (result) debug(userAgent)
18
return result
19
}
0 commit comments