We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
uri
1 parent e2fd1e6 commit 8b7596fCopy full SHA for 8b7596f
jsHelper/homeConfig.js
@@ -21,7 +21,7 @@ SpicetifyHomeConfig = {};
21
const stickSections = [];
22
const lowSections = [];
23
for (const uri of stickList) {
24
- const index = sections.findIndex((a) => a?.uri === uri || a?.item.uri === uri);
+ const index = sections.findIndex((a) => a?.uri === uri || a?.item?.uri === uri);
25
if (index !== -1) {
26
const item = sections[index];
27
const uri = item.item.uri || item.uri;
@@ -31,7 +31,7 @@ SpicetifyHomeConfig = {};
31
}
32
33
for (const uri of lowList) {
34
35
36
37
0 commit comments