Skip to content

Commit

Permalink
fix: index in iteration was unsused
Browse files Browse the repository at this point in the history
  • Loading branch information
olzzon committed Jul 27, 2023
1 parent a2597d9 commit 61a3b3a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/src/MainThreadHandler.ts
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ export class MainThreadHandlers {

reIndexAssignedChannelsRelation() {
state.channels[0].chMixerConnection.forEach((mixer: any) => {
mixer.channel.forEach((channel: IChannel, channelIndex: number) => {
mixer.channel.forEach((channel: IChannel) => {
channel.assignedFader = -1
})
})
Expand Down

0 comments on commit 61a3b3a

Please sign in to comment.