[smsapp] Fix starting new conversation

This commit is contained in:
Nicolas Fella 2020-05-12 01:05:38 +02:00
parent 08ea3d783d
commit 785f70c28f

View file

@ -209,7 +209,7 @@ Kirigami.ScrollablePage
filter.enabled = false
// If the address entered by the user already exists then ignore adding new contact
if (!view.model.doesAddressExists(filter.text) && smsHelper.isAddressValid(filter.text)) {
if (!view.model.doesAddressExists(filter.text) && SmsHelper.isAddressValid(filter.text)) {
conversationListModel.createConversationForAddress(filter.text)
view.currentIndex = 0
}