Skip to content

Commit

Permalink
Update DamonJsPlayer.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
achiragaming committed Nov 24, 2024
1 parent 6209f8d commit ec20118
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Managers/DamonJsPlayer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -134,13 +134,13 @@ export class DamonJsPlayer {
this.state = PlayerState.CONNECTED;
}
private playbackQueue = {
operations: [] as Array<{
operations: [] as {
priority: number;
name: string;
operation: () => Promise<any>;
resolve: (value: any) => void;
reject: (error: Error) => void;
}>,
}[],
isProcessing: false,
};

Expand Down

0 comments on commit ec20118

Please sign in to comment.