about summary refs log tree commit diff
path: root/src/App.native.tsx
diff options
context:
space:
mode:
authorHailey <me@haileyok.com>2024-08-12 14:58:41 -0700
committerGitHub <noreply@github.com>2024-08-12 14:58:41 -0700
commit134fcd35d84788659effd3a9d0b9e8952b85e0da (patch)
treecc66d25a4f894a3f77b061c01174617c29ab07f8 /src/App.native.tsx
parent7df2327424e948e54b9731e5ab651e889f38a772 (diff)
downloadvoidsky-134fcd35d84788659effd3a9d0b9e8952b85e0da.tar.zst
[Video] Invert usage of `setAudioActive` (#4924)
Diffstat (limited to 'src/App.native.tsx')
-rw-r--r--src/App.native.tsx2
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))
   }, [])