Przeglądaj źródła

fix: adding songs to stations no longer worked

Kristian Vos 1 rok temu
rodzic
commit
5081c7d373
1 zmienionych plików z 1 dodań i 1 usunięć
  1. 1 1
      backend/logic/stations.js

+ 1 - 1
backend/logic/stations.js

@@ -1969,7 +1969,7 @@ class _StationsModule extends CoreClass {
 
 							if (
 								queueAddBeforeAutofilled === true ||
-								queueAddBeforeAutofilled.indexOf(stationId) !== -1
+								(Array.isArray(queueAddBeforeAutofilled) && queueAddBeforeAutofilled.indexOf(stationId) !== -1)
 							) {
 								let position = station.queue.length;