diff options
author | Hailey <me@haileyok.com> | 2024-08-09 16:52:23 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-08-09 16:52:23 -0700 |
commit | 65d6e561d429d6759d1eef674a964d1109a1afeb (patch) | |
tree | 083839fab56df7b13afcac312cff8aa22f05e6ac /src/App.native.tsx | |
parent | c2131bb0392487f11b0c31fe68fdd3e847d62142 (diff) | |
download | voidsky-65d6e561d429d6759d1eef674a964d1109a1afeb.tar.zst |
[Video] Resume background audio whenever muting video audio (#4915)
Diffstat (limited to 'src/App.native.tsx')
-rw-r--r-- | src/App.native.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/App.native.tsx b/src/App.native.tsx index 71b53e7a3..8e7c53b93 100644 --- a/src/App.native.tsx +++ b/src/App.native.tsx @@ -159,7 +159,7 @@ function App() { React.useEffect(() => { PlatformInfo.setAudioCategory(AudioCategory.Ambient) - PlatformInfo.setAudioMixWithOthers(true) + PlatformInfo.setAudioActive(true) initPersistedState().then(() => setReady(true)) }, []) |