fix: eslint no-shadow errors

This commit is contained in:
Aimekram
2022-10-16 16:04:37 +02:00
parent 6a93a2eb29
commit 832b9eaf4d
30 changed files with 273 additions and 271 deletions
+4 -4
View File
@@ -980,9 +980,9 @@ class ChromecastPlayer {
const instance = this;
apiClient.getItem(userId, item.Id).then(function (item) {
apiClient.getItem(userId, item.Id).then(function (fetchedItem) {
instance.playWithCommand({
items: [item]
items: [fetchedItem]
}, 'Shuffle');
});
}
@@ -993,9 +993,9 @@ class ChromecastPlayer {
const instance = this;
apiClient.getItem(userId, item.Id).then(function (item) {
apiClient.getItem(userId, item.Id).then(function (fetchedItem) {
instance.playWithCommand({
items: [item]
items: [fetchedItem]
}, 'InstantMix');
});
}