Skip to content

Commit 024bd0d

Browse files
Meteor0idSgn-32
authored andcommitted
Fix Meteor0id enhance ringing sounds
1 parent 90be2a0 commit 024bd0d

File tree

5 files changed

+3
-3
lines changed

5 files changed

+3
-3
lines changed

app/src/main/java/org/thoughtcrime/securesms/webrtc/audio/OutgoingRinger.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,12 +30,12 @@ public enum Type {
3030
public OutgoingRinger(@NonNull Context context) {
3131
this.context = context;
3232
}
33-
33+
3434
public void start(Type type) {
3535
int soundId;
3636

37-
if (type == Type.RINGING) soundId = R.raw.redphone_outring;
38-
else if (type == Type.BUSY) soundId = R.raw.redphone_busy;
37+
if (type == Type.RINGING) soundId = R.raw.signal_call_outring;
38+
else if (type == Type.BUSY) soundId = R.raw.signal_call_busy;
3939
else throw new IllegalArgumentException("Not a valid sound type");
4040

4141
if( mediaPlayer != null ) {
-166 KB
Binary file not shown.
-94.9 KB
Binary file not shown.
76.8 KB
Binary file not shown.
37.8 KB
Binary file not shown.

0 commit comments

Comments
 (0)