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 @@ -33,7 +33,7 @@ export class IrcPlumbCommand implements ICommand {
33
33
for ( const auditorium of conference . storedAuditoriums ) {
34
34
const channelName = await this . ircBridge . deriveChannelName ( auditorium ) ;
35
35
try {
36
- await this . plumbOne ( client , channelName , auditorium . roomId ) ;
36
+ await this . plumbOne ( client , auditorium . roomId , channelName ) ;
37
37
// Wait before plumbing the next one so as to not overwhelm the poor bridge.
38
38
await new Promise ( r => setTimeout ( r , PLUMB_WAIT_MS ) ) ;
39
39
} catch ( ex ) {
@@ -44,7 +44,7 @@ export class IrcPlumbCommand implements ICommand {
44
44
for ( const interest of conference . storedInterestRooms ) {
45
45
const channelName = await this . ircBridge . deriveChannelNameSI ( interest ) ;
46
46
try {
47
- await this . plumbOne ( client , channelName , interest . roomId ) ;
47
+ await this . plumbOne ( client , interest . roomId , channelName ) ;
48
48
// Wait before plumbing the next one so as to not overwhelm the poor bridge.
49
49
await new Promise ( r => setTimeout ( r , PLUMB_WAIT_MS ) ) ;
50
50
} catch ( ex ) {
You can’t perform that action at this time.
0 commit comments