Timer issues fixed - 0.9.9
This commit is contained in:
parent
fc52d0dc68
commit
925d24c3a7
@ -117,7 +117,7 @@ export class Stream {
|
|||||||
private per_sec_bytes : number;
|
private per_sec_bytes : number;
|
||||||
private content_length : number;
|
private content_length : number;
|
||||||
private video_url : string;
|
private video_url : string;
|
||||||
private timer : NodeJS.Timer;
|
private timer : NodeJS.Timer | null;
|
||||||
private cookie : string;
|
private cookie : string;
|
||||||
private data_ended : boolean;
|
private data_ended : boolean;
|
||||||
private playing_count : number;
|
private playing_count : number;
|
||||||
@ -162,9 +162,10 @@ export class Stream {
|
|||||||
}
|
}
|
||||||
|
|
||||||
private cleanup(){
|
private cleanup(){
|
||||||
clearInterval(this.timer)
|
clearInterval(this.timer as NodeJS.Timer)
|
||||||
this.request?.unpipe(this.stream)
|
this.request?.unpipe(this.stream)
|
||||||
this.request?.destroy()
|
this.request?.destroy()
|
||||||
|
this.timer = null
|
||||||
this.request = null
|
this.request = null
|
||||||
this.url = ''
|
this.url = ''
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user