Files
teamspeak-obs-overlay/old_js/js/utils.js
2023-06-04 15:50:48 +02:00

13 lines
220 B
JavaScript

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