File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -34,7 +34,7 @@ export class IrcPlumbCommand implements ICommand {
34
34
for ( const auditorium of this . conference . storedAuditoriums ) {
35
35
const channelName = await this . ircBridge . deriveChannelName ( auditorium ) ;
36
36
try {
37
- await this . plumbOne ( this . client , channelName , auditorium . roomId ) ;
37
+ await this . plumbOne ( this . client , auditorium . roomId , channelName ) ;
38
38
// Wait before plumbing the next one so as to not overwhelm the poor bridge.
39
39
await new Promise ( r => setTimeout ( r , PLUMB_WAIT_MS ) ) ;
40
40
} catch ( ex ) {
@@ -45,7 +45,7 @@ export class IrcPlumbCommand implements ICommand {
45
45
for ( const interest of this . conference . storedInterestRooms ) {
46
46
const channelName = await this . ircBridge . deriveChannelNameSI ( interest ) ;
47
47
try {
48
- await this . plumbOne ( this . client , channelName , interest . roomId ) ;
48
+ await this . plumbOne ( this . client , interest . roomId , channelName ) ;
49
49
// Wait before plumbing the next one so as to not overwhelm the poor bridge.
50
50
await new Promise ( r => setTimeout ( r , PLUMB_WAIT_MS ) ) ;
51
51
} catch ( ex ) {
You can’t perform that action at this time.
0 commit comments