diff options
author | Hailey <me@haileyok.com> | 2024-08-12 14:58:41 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-08-12 14:58:41 -0700 |
commit | 134fcd35d84788659effd3a9d0b9e8952b85e0da (patch) | |
tree | cc66d25a4f894a3f77b061c01174617c29ab07f8 /src/App.native.tsx | |
parent | 7df2327424e948e54b9731e5ab651e889f38a772 (diff) | |
download | voidsky-134fcd35d84788659effd3a9d0b9e8952b85e0da.tar.zst |
[Video] Invert usage of `setAudioActive` (#4924)
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 8e7c53b93..bce439a71 100644 --- a/src/App.native.tsx +++ b/src/App.native.tsx @@ -159,7 +159,7 @@ function App() { React.useEffect(() => { PlatformInfo.setAudioCategory(AudioCategory.Ambient) - PlatformInfo.setAudioActive(true) + PlatformInfo.setAudioActive(false) initPersistedState().then(() => setReady(true)) }, []) |