Avoid Lint warning

This commit is contained in:
Juha Heinanen
2025-04-03 17:46:19 +03:00
parent dd11873f67
commit 520e174d28
3 changed files with 12 additions and 10 deletions
@@ -1645,8 +1645,7 @@ class BaresipService: Service() {
val messageUpdate = MutableLiveData<Long>()
val contactUpdate = MutableLiveData<Long>()
val registrationUpdate = MutableLiveData<Long>()
@SuppressLint("MutableCollectionMutableState")
val baresipContacts = mutableStateOf(mutableListOf<Contact.BaresipContact>())
val baresipContacts = mutableStateOf(emptyList<Contact.BaresipContact>())
val androidContacts = mutableStateOf(emptyList<Contact.AndroidContact>())
val contactNames = mutableStateOf(emptyList<String>())
var contactsMode = "baresip"