diff --git a/ts/components/GlobalAudioContext.tsx b/ts/components/GlobalAudioContext.tsx index 85f51b0ccb..0cafced7ef 100644 --- a/ts/components/GlobalAudioContext.tsx +++ b/ts/components/GlobalAudioContext.tsx @@ -27,6 +27,8 @@ export type Contents = { // `audioContext` global, however, as the browser limits the number that can be // created.) const audioContext = new AudioContext(); +audioContext.suspend(); + const waveformCache: WaveformCache = new LRU({ max: MAX_WAVEFORM_COUNT, });