about summary refs log tree commit diff
path: root/modules/expo-bluesky-swiss-army/src/PlatformInfo/index.web.ts
diff options
context:
space:
mode:
authorHailey <me@haileyok.com>2024-08-09 16:52:23 -0700
committerGitHub <noreply@github.com>2024-08-09 16:52:23 -0700
commit65d6e561d429d6759d1eef674a964d1109a1afeb (patch)
tree083839fab56df7b13afcac312cff8aa22f05e6ac /modules/expo-bluesky-swiss-army/src/PlatformInfo/index.web.ts
parentc2131bb0392487f11b0c31fe68fdd3e847d62142 (diff)
downloadvoidsky-65d6e561d429d6759d1eef674a964d1109a1afeb.tar.zst
[Video] Resume background audio whenever muting video audio (#4915)
Diffstat (limited to 'modules/expo-bluesky-swiss-army/src/PlatformInfo/index.web.ts')
-rw-r--r--modules/expo-bluesky-swiss-army/src/PlatformInfo/index.web.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/expo-bluesky-swiss-army/src/PlatformInfo/index.web.ts b/modules/expo-bluesky-swiss-army/src/PlatformInfo/index.web.ts
index cb64d00ce..61412753c 100644
--- a/modules/expo-bluesky-swiss-army/src/PlatformInfo/index.web.ts
+++ b/modules/expo-bluesky-swiss-army/src/PlatformInfo/index.web.ts
@@ -8,8 +8,8 @@ export function getIsReducedMotionEnabled(): boolean {
   return window.matchMedia('(prefers-reduced-motion: reduce)').matches
 }
 
-export function setAudioMixWithOthers(mixWithOthers: boolean): void {
-  throw new NotImplementedError({mixWithOthers})
+export function setAudioActive(active: boolean): void {
+  throw new NotImplementedError({active})
 }
 
 export function setAudioCategory(audioCategory: AudioCategory): void {