From 32e34e5955da5b2c4dc7e16a1156161edc2a2bce Mon Sep 17 00:00:00 2001 From: "B. Petersen" Date: Mon, 20 May 2019 18:11:10 +0200 Subject: [PATCH] play soundOut for outgoing messages --- .../thoughtcrime/securesms/notifications/MessageNotifier.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/org/thoughtcrime/securesms/notifications/MessageNotifier.java b/src/org/thoughtcrime/securesms/notifications/MessageNotifier.java index fa0f34b67..8130ebe77 100644 --- a/src/org/thoughtcrime/securesms/notifications/MessageNotifier.java +++ b/src/org/thoughtcrime/securesms/notifications/MessageNotifier.java @@ -119,7 +119,7 @@ public class MessageNotifier { } if (Prefs.isInChatNotifications(instance.context) && instance.soundOutLoaded) { - instance.soundPool.play(instance.soundIn, 1.0f, 1.0f, 1, 0, 1.0f); + instance.soundPool.play(instance.soundOut, 1.0f, 1.0f, 1, 0, 1.0f); } }