Skip to content

Commit

Permalink
(#708) Fix ConcurrentModificationException in WebmStreamingDataSource
Browse files Browse the repository at this point in the history
  • Loading branch information
K1rakishou committed Feb 24, 2020
1 parent 13878b2 commit 02f5e3c
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -391,10 +391,10 @@ public void cacheComplete() {
for (Callback c : listeners) {
c.dataSourceAddedFile(innerFile);
}
});

listeners.clear();
partialFileCache.clearListeners();
listeners.clear();
partialFileCache.clearListeners();
});
}

public void addListener(Callback c) {
Expand Down

0 comments on commit 02f5e3c

Please sign in to comment.