Skip to content

Commit

Permalink
fuk dis
Browse files Browse the repository at this point in the history
  • Loading branch information
AmarnathCJD committed Dec 22, 2024
1 parent a3d280b commit 76b7792
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mtproto.go
Original file line number Diff line number Diff line change
Expand Up @@ -637,7 +637,7 @@ func (m *MTProto) handle404Error() {
if len(m.authKey404) == 0 {
m.authKey404 = [2]int64{1, time.Now().Unix()}
} else {
if time.Now().Unix()-m.authKey404[1] < 30 { // repeated failures
if time.Now().Unix()-m.authKey404[1] < 2 { // repeated failures
m.authKey404[0]++
} else {
m.authKey404[0] = 1
Expand Down

0 comments on commit 76b7792

Please sign in to comment.