Jelajahi Sumber

fix: Count participating users in vote to skip users only when they have voted

Owen Diffey 1 tahun lalu
induk
melakukan
56cc25352c
1 mengubah file dengan 2 tambahan dan 1 penghapusan
  1. 2 1
      backend/logic/stations.js

+ 2 - 1
backend/logic/stations.js

@@ -940,7 +940,8 @@ class _StationsModule extends CoreClass {
 										if (socket && socket.session && socket.session.userId) {
 											if (
 												!users.includes(socket.session.userId) &&
-												socket.session.stationState !== "participate"
+												(socket.session.stationState !== "participate" ||
+													station.currentSong.skippedAt.includes(socket.session.userId))
 											)
 												users.push(socket.session.userId);
 										}