File tree 1 file changed +3
-0
lines changed
1 file changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -157,6 +157,7 @@ export class CtcpParser extends AddJob {
157
157
delay : this . timeout ,
158
158
fileInfo,
159
159
} ) ;
160
+ this . emit ( 'debug' , 'xdccJS:: BEFORE_TCP_REQUEST_RESUME' )
160
161
return true ;
161
162
}
162
163
return false ;
@@ -207,13 +208,15 @@ export class CtcpParser extends AddJob {
207
208
const parts = CtcpParser . ctcpMatch ( text ) ;
208
209
const type = `${ parts [ 0 ] } ${ parts [ 1 ] } ` ;
209
210
if ( type === 'DCC ACCEPT' ) {
211
+ this . emit ( 'debug' , 'xdccJS:: BEFORE_TCP_RESUME_ACCEPT' ) ;
210
212
const resume = this . resumequeue . filter ( ( q ) => q . nick === nick ) ;
211
213
this . resumequeue = this . resumequeue . filter ( ( q ) => q . nick !== nick ) ;
212
214
if ( resume . length ) {
213
215
return this . fileInfoBuilder ( parts , resume [ 0 ] ) ;
214
216
}
215
217
}
216
218
if ( type === 'DCC SEND' ) {
219
+ this . emit ( 'debug' , 'xdccJS:: BEFORE_TCP_ACCEPT' ) ;
217
220
return this . fileInfoBuilder ( parts ) ;
218
221
}
219
222
return undefined ;
You can’t perform that action at this time.
0 commit comments