mirror of
https://github.com/Drop-OSS/drop-app
synced 2026-08-27 22:23:04 -04:00
fix(download agent): fixed completed indexes
This commit is contained in:
parent
89ea34c94e
commit
39f2ebd2d6
1 changed files with 1 additions and 1 deletions
|
|
@ -302,7 +302,7 @@ impl GameDownloadAgent {
|
|||
|
||||
let completed_lock_len = {
|
||||
let mut completed_contexts_lock = self.completed_contexts.lock().unwrap();
|
||||
for (item, _) in newly_completed.iter() {
|
||||
for (_, item) in newly_completed.iter() {
|
||||
completed_contexts_lock.push_front(item);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue