Skip to content

Commit

Permalink
Fix transpilation error
Browse files Browse the repository at this point in the history
  • Loading branch information
Rian8337 committed Jan 24, 2024
1 parent 55a306a commit 68c1a85
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/utils/music/MusicQueue.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ export class MusicQueue {
format: "bestaudio[ext=webm+acodec=opus+asr=48000]/bestaudio",
limitRate: "250K",
},
{ stdio: ["ignore", "pipe", "ignore"] }
{ stdio: ["ignore", "pipe", "ignore"] },
);

if (!process.stdout) {
Expand All @@ -63,12 +63,12 @@ export class MusicQueue {
createAudioResource(probe.stream, {
metadata: this,
inputType: probe.type,
})
)
}),
),
)
.catch(onError);
})
.catch(onError);
.once("error", onError);
});
}
}

0 comments on commit 68c1a85

Please sign in to comment.