added comments

This commit is contained in:
Janis
2023-01-11 13:47:45 +01:00
parent 601d7b8302
commit 3eeb44789d

View File

@@ -1,3 +1,4 @@
// Parse teamspeak channel structure into our objects
function parseChannelInfos(channelInfos) {
let result = [];
let rootChannels = channelInfos.rootChannels;
@@ -15,6 +16,7 @@ function parseChannelInfos(channelInfos) {
return result;
}
// Parse teamspeak clients into our objects
function parseClientInfos(clientInfos) {
let result = [];
clientInfos.forEach((e) => {