|
@@ -53,7 +53,7 @@ class AudioDeviceHandlerConnectionService implements
|
53
|
53
|
*/
|
54
|
54
|
private static int audioDeviceToRouteInt(String audioDevice) {
|
55
|
55
|
if (audioDevice == null) {
|
56
|
|
- return CallAudioState.ROUTE_EARPIECE;
|
|
56
|
+ return CallAudioState.ROUTE_SPEAKER;
|
57
|
57
|
}
|
58
|
58
|
switch (audioDevice) {
|
59
|
59
|
case AudioModeModule.DEVICE_BLUETOOTH:
|
|
@@ -66,7 +66,7 @@ class AudioDeviceHandlerConnectionService implements
|
66
|
66
|
return CallAudioState.ROUTE_SPEAKER;
|
67
|
67
|
default:
|
68
|
68
|
JitsiMeetLogger.e(TAG + " Unsupported device name: " + audioDevice);
|
69
|
|
- return CallAudioState.ROUTE_EARPIECE;
|
|
69
|
+ return CallAudioState.ROUTE_SPEAKER;
|
70
|
70
|
}
|
71
|
71
|
}
|
72
|
72
|
|