|
@@ -162,7 +162,11 @@ export class FileTrack extends Track {
|
|
}
|
|
}
|
|
|
|
|
|
pause(): void {
|
|
pause(): void {
|
|
- if (this.state === PlayState.PAUSED || this.state === PlayState.STOPPED)
|
|
+ if (
|
|
|
|
+ this.state === PlayState.UNSTARTED ||
|
|
|
|
+ this.state === PlayState.PAUSED ||
|
|
|
|
+ this.state === PlayState.STOPPED
|
|
|
|
+ )
|
|
return;
|
|
return;
|
|
this.resumeTime = this.manager.getTime() - this.playStartTime;
|
|
this.resumeTime = this.manager.getTime() - this.playStartTime;
|
|
if (this.source) {
|
|
if (this.source) {
|