diff --git a/packages/discord-player/src/Player.ts b/packages/discord-player/src/Player.ts index a02aca844..88a2eee88 100644 --- a/packages/discord-player/src/Player.ts +++ b/packages/discord-player/src/Player.ts @@ -67,7 +67,7 @@ export class Player extends PlayerEventsEmitter { connectionTimeout: 20000, smoothVolume: true, lagMonitor: 30000, - queryCache: options.queryCache === null ? null : new QueryCache(this), + queryCache: options.queryCache === null ? null : options.queryCache || new QueryCache(this), ...options, ytdlOptions: { highWaterMark: 1 << 25,