mirror of
https://github.com/signalapp/Signal-Android.git
synced 2026-04-20 16:49:40 +01:00
Fix MediaRecorder crash when no data captured.
This commit is contained in:
committed by
Greyson Parrelli
parent
8968ef1b85
commit
ae40a65924
@@ -87,7 +87,7 @@ public final class FeatureFlags {
|
||||
private static final String DONOR_BADGES = "android.donorBadges.6";
|
||||
private static final String DONOR_BADGES_DISPLAY = "android.donorBadges.display.4";
|
||||
private static final String CDSH = "android.cdsh";
|
||||
private static final String VOICE_NOTE_RECORDING_V2 = "android.voiceNoteRecordingV2";
|
||||
private static final String VOICE_NOTE_RECORDING_V2 = "android.voiceNoteRecordingV2.2";
|
||||
|
||||
/**
|
||||
* We will only store remote values for flags in this set. If you want a flag to be controllable
|
||||
@@ -432,7 +432,7 @@ public final class FeatureFlags {
|
||||
|
||||
/** Whether or not to use the new voice note recorder backed by MediaRecorder. */
|
||||
public static boolean voiceNoteRecordingV2() {
|
||||
return getBoolean(VOICE_NOTE_RECORDING_V2, true);
|
||||
return getBoolean(VOICE_NOTE_RECORDING_V2, false);
|
||||
}
|
||||
|
||||
/** Only for rendering debug info. */
|
||||
|
||||
Reference in New Issue
Block a user