mirror of
https://github.com/zedeus/nitter
synced 2026-09-05 22:59:31 +00:00
Ignore null errors, they're internal API errors
This commit is contained in:
parent
8516ebe2b7
commit
dae68b4f13
1 changed files with 1 additions and 1 deletions
|
|
@ -8,7 +8,7 @@ const
|
|||
rlRemaining = "x-rate-limit-remaining"
|
||||
rlReset = "x-rate-limit-reset"
|
||||
rlLimit = "x-rate-limit-limit"
|
||||
errorsToSkip = {doesntExist, tweetNotFound, timeout, unauthorized, badRequest}
|
||||
errorsToSkip = {null, doesntExist, tweetNotFound, timeout, unauthorized, badRequest}
|
||||
|
||||
var pool: HttpPool
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue