Skip to content

Commit

Permalink
Merge pull request #22 from SiNaPsEr0x/patch-1
Browse files Browse the repository at this point in the history
Update cleaner.py
  • Loading branch information
gurland authored Jan 10, 2021
2 parents 7a53805 + 6159dde commit e008dcf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cleaner.py
Original file line number Diff line number Diff line change
Expand Up @@ -94,10 +94,10 @@ def run(self):
else:
self.add_offset = 100

for i in range(0, messages_count, 100):
for i in range(0, messages_count, 1000):
q = self.search_messages()
self.update_ids(q)
self.add_offset += 100
self.add_offset += 1000

self.delete_messages()

Expand Down

0 comments on commit e008dcf

Please sign in to comment.