mirror of
https://github.com/DerTyp7/teamspeak-obs-overlay.git
synced 2025-10-29 04:42:08 +01:00
11 lines
187 B
JavaScript
11 lines
187 B
JavaScript
function getClientsInChannel(channel) {
|
|
let result = [];
|
|
|
|
clientList.items.forEach((e) => {
|
|
if (e.channel.id == channel.id) {
|
|
result.push(e);
|
|
}
|
|
});
|
|
return result;
|
|
}
|