mirror of
https://github.com/librespot-org/librespot.git
synced 2024-11-08 16:45:43 +00:00
Fix typo
This commit is contained in:
parent
1fcacf78cd
commit
216bdc0f6f
1 changed files with 1 additions and 1 deletions
|
@ -731,7 +731,7 @@ impl AudioFileFetch {
|
||||||
// record the response time
|
// record the response time
|
||||||
self.network_response_times_ms.push(response_time_ms);
|
self.network_response_times_ms.push(response_time_ms);
|
||||||
|
|
||||||
// prone old response times. Keep at most three.
|
// prune old response times. Keep at most three.
|
||||||
while self.network_response_times_ms.len() > 3 {
|
while self.network_response_times_ms.len() > 3 {
|
||||||
self.network_response_times_ms.remove(0);
|
self.network_response_times_ms.remove(0);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue