From a659b5a079f96e1089667e12f507b49f2ca7167e Mon Sep 17 00:00:00 2001 From: Valere Date: Fri, 13 Mar 2026 11:43:13 +0100 Subject: [PATCH] test switchero --- src/state/MediaDevices.ts | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/src/state/MediaDevices.ts b/src/state/MediaDevices.ts index d6af3998..aeedd3a4 100644 --- a/src/state/MediaDevices.ts +++ b/src/state/MediaDevices.ts @@ -397,10 +397,12 @@ class ControlledAudioOutput implements MediaDevice< combineLatest( [ this.available$, - merge( - controlledOutputSelection$.pipe(startWith(undefined)), - this.deviceSelection$, - ), + this.platform == "android" + ? this.deviceSelection$ // On android ignore native forcing the selection (TODO add test to ensure adding a BT device switch to it) + : merge( + controlledOutputSelection$.pipe(startWith(undefined)), + this.deviceSelection$, + ), ], (available, preferredId) => { this.logger.debug(