Bumped versionCode

This commit is contained in:
Sylvain Berfini 2022-06-15 10:40:26 +02:00
parent ae59117596
commit 93d00931ac
3 changed files with 3 additions and 3 deletions

View file

@ -8,7 +8,7 @@ plugins {
def appVersionName = "4.7.0" def appVersionName = "4.7.0"
// Uncomment for 4.7.0 release // Uncomment for 4.7.0 release
// def appVersionCode = 40700 // 4.07.00 // def appVersionCode = 40700 // 4.07.00
def appVersionCode = 40691 // 4.06.91 def appVersionCode = 40692 // 4.06.92
static def getPackageName() { static def getPackageName() {
return "org.linphone" return "org.linphone"

View file

@ -130,7 +130,7 @@ class ChatRoomData(private val chatRoom: ChatRoom) : ContactDataInterface {
if (chatRoom.participants.isNotEmpty()) { if (chatRoom.participants.isNotEmpty()) {
chatRoom.participants[0].address chatRoom.participants[0].address
} else { } else {
Log.e("[Chat Room] $chatRoom doesn't have any participant (state ${chatRoom.state})!") Log.e("[Chat Room] ${chatRoom.peerAddress} doesn't have any participant (state ${chatRoom.state})!")
null null
} }
} }

View file

@ -295,7 +295,7 @@ class ChatRoomViewModel(val chatRoom: ChatRoom) : ViewModel(), ContactDataInterf
if (chatRoom.participants.isNotEmpty()) { if (chatRoom.participants.isNotEmpty()) {
chatRoom.participants[0].address chatRoom.participants[0].address
} else { } else {
Log.e("[Chat Room] $chatRoom doesn't have any participant (state ${chatRoom.state})!") Log.e("[Chat Room] ${chatRoom.peerAddress} doesn't have any participant (state ${chatRoom.state})!")
null null
} }
} }