Files
teamspeak-obs-overlay/js/utils.js
2023-01-10 17:57:55 -08:00

13 lines
281 B
JavaScript

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