Skip to content

Commit

Permalink
crash bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
DoTheEvo committed Sep 17, 2015
1 parent 8f293df commit e06907f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion angrysearch.py
Original file line number Diff line number Diff line change
Expand Up @@ -640,7 +640,7 @@ def waiting_done(self, waiting_data):
if self.last_keyboard_input == waiting_data:
self.new_query_new_thread(waiting_data)
if len(self.waiting_threads) > 40:
del self.queries_threads[0:20]
del self.waiting_threads[0:20]

# NEW DATABASE QUERY ADDED TO LIST OF RECENT RUNNING THREADS
def new_query_new_thread(self, input):
Expand Down

0 comments on commit e06907f

Please sign in to comment.