소스 검색

fix: adding songs to stations no longer worked

Kristian Vos 1 년 전
부모
커밋
5081c7d373
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  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;