소스 검색

Fixed small issue where unscheduling didn't work

Kristian Vos 4 년 전
부모
커밋
fa6d21dacd
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      backend/logic/stations.js

+ 1 - 1
backend/logic/stations.js

@@ -230,7 +230,7 @@ class StationsModule extends CoreClass {
                         if (!station) return next("Station not found.");
                         this.notifications
                             .runJob("UNSCHEDULE", {
-                                subscription: `stations.nextSong?id=${station._id}`,
+                                name: `stations.nextSong?id=${station._id}`,
                             })
                             .then()
                             .catch();