diff --git a/src/controller/mainController.py b/src/controller/mainController.py index 7bc9cd5..3068130 100644 --- a/src/controller/mainController.py +++ b/src/controller/mainController.py @@ -402,7 +402,7 @@ class Controller(object): # If there is no buffer, we must create one in a wxThread so it will not crash. if buffer == None: wx.CallAfter(self.chat_from_id, uid, setfocus=self.session.settings["chat"]["automove_to_conversations"]) - self.session.soundplayer.play("message_received.ogg") + self.session.soundplayer.play("conversation_opened.ogg") return # If the chat already exists, let's create a dictionary wich will contains data of the received message. message = {"id": obj.message_id, "user_id": uid, "date": obj.timestamp, "body": obj.text, "attachments": obj.attachments} diff --git a/src/sounds/default/conversation_opened.ogg b/src/sounds/default/conversation_opened.ogg new file mode 100644 index 0000000..e286e76 Binary files /dev/null and b/src/sounds/default/conversation_opened.ogg differ diff --git a/src/sounds/default/message_unread.ogg b/src/sounds/default/message_unread.ogg index 56caee8..d0c1b17 100644 Binary files a/src/sounds/default/message_unread.ogg and b/src/sounds/default/message_unread.ogg differ