using spaces instead of tabs now & added prettier config

This commit is contained in:
Janis
2022-10-27 21:14:29 +02:00
parent 00c4dbd0a1
commit 9f5c39b5a8
11 changed files with 281 additions and 277 deletions

View File

@@ -1,10 +1,10 @@
function getClientsInChannel(channel) {
let result = [];
let result = [];
clientList.items.forEach((e) => {
if (e.channel.id == channel.id) {
result.push(e);
}
});
return result;
clientList.items.forEach((e) => {
if (e.channel.id == channel.id) {
result.push(e);
}
});
return result;
}