update project structure

This commit is contained in:
Janis
2023-07-24 02:00:17 +02:00
parent deae4ca430
commit 6a57754494
12 changed files with 1300 additions and 98 deletions

View File

@@ -26,7 +26,7 @@ export class TS5MessageHandler implements ITS5MessageHandler {
if (channelInfos) {
if (channelInfos.subChannels !== null && channel.id in channelInfos.subChannels) {
channelInfos.subChannels[channel.id].forEach((subChannel: IChannel) => {
channelInfos.subChannels[channel.id]?.forEach((subChannel: IChannel) => {
this.dataHandler.addChannel({ ...subChannel, connection: connection });
});
}