Files
teamspeak-obs-overlay/js/utils.js
2022-10-25 18:45:15 +02:00

11 lines
176 B
JavaScript

function getClientsInChannel(channel) {
let result = [];
clientList.items.forEach((e) => {
if (e.channel.id == channel.id) {
result.push(e);
}
});
return result;
}