Revert changes breaking app version & incoming call go to call activity when answering

This commit is contained in:
Sylvain Berfini 2024-01-11 15:44:59 +01:00
parent 4dc660a52d
commit acfabaae23
2 changed files with 3 additions and 6 deletions

View file

@ -19,7 +19,7 @@ configurations {
def gitBranch = new ByteArrayOutputStream()
def gitVersion = new ByteArrayOutputStream()
tasks.register('getGitVersion') {
task getGitVersion() {
def gitVersionStream = new ByteArrayOutputStream()
def gitCommitsCount = new ByteArrayOutputStream()
def gitCommitHash = new ByteArrayOutputStream()

View file

@ -163,11 +163,8 @@ class CoreContext @UiThread constructor(val context: Context) : HandlerThread("C
}
}
Call.State.Connected -> {
val conferenceInfo = core.findConferenceInformationFromUri(call.remoteAddress)
if (conferenceInfo != null) {
postOnMainThread {
showCallActivity()
}
postOnMainThread {
showCallActivity()
}
}
else -> {