allow disabling web audio

This commit is contained in:
Kendall Garner 2024-08-29 19:44:24 -07:00
parent e68847f50a
commit 93055b3bf1
No known key found for this signature in database
GPG key ID: 18D2767419676C87
5 changed files with 38 additions and 4 deletions

View file

@ -265,6 +265,7 @@ export interface SettingsState {
};
style: PlaybackStyle;
type: PlaybackType;
webAudio: boolean;
};
remote: {
enabled: boolean;
@ -439,6 +440,7 @@ const initialState: SettingsState = {
},
style: PlaybackStyle.GAPLESS,
type: PlaybackType.WEB,
webAudio: true,
},
remote: {
enabled: false,