TrixiEther / DashchanFork

Imageboards client for Android
GNU General Public License v3.0
40 stars 2 forks source link

Fix possible crash when cancel all downloads #104

Closed N3-M3-S1S closed 1 year ago

N3-M3-S1S commented 1 year ago

When a user downloads files and presses "cancel all" button in the notification, there is a chance that the app will crash with ConcurrentModificationException because one thread (main) is iterating through tasks in "cleanup" method while another thread (executor) modifies collection in "startNextTask" method. Fix this by moving "iterator.remove" call to the main thread.