mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
Fix prefer for-of errors
This commit is contained in:
parent
ef719c45f4
commit
1b03cd79eb
11 changed files with 26 additions and 47 deletions
|
@ -853,11 +853,9 @@ class PlaybackManager {
|
|||
user: user
|
||||
});
|
||||
|
||||
for (let i = 0; i < responses.length; i++) {
|
||||
const subTargets = responses[i];
|
||||
|
||||
for (let j = 0; j < subTargets.length; j++) {
|
||||
targets.push(subTargets[j]);
|
||||
for (const subTargets of responses) {
|
||||
for (const subTarget of subTargets) {
|
||||
targets.push(subTarget);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue