CHANGELOG.md 🔗
@@ -1,5 +1,9 @@
# Changelog
+### Version 2.9.8
+
+* Verify A/V calls with preexisting OMEMO sessions
+
### Version 2.9.7
* Ability to select incoming call ringtone
Daniel Gultsch created
CHANGELOG.md | 4
build.gradle | 4
src/main/java/eu/siacs/conversations/services/XmppConnectionService.java | 1
3 files changed, 7 insertions(+), 2 deletions(-)
@@ -1,5 +1,9 @@
# Changelog
+### Version 2.9.8
+
+* Verify A/V calls with preexisting OMEMO sessions
+
### Version 2.9.7
* Ability to select incoming call ringtone
@@ -91,8 +91,8 @@ android {
defaultConfig {
minSdkVersion 21
targetSdkVersion 29
- versionCode 42000
- versionName "2.9.7"
+ versionCode 42001
+ versionName "2.9.8-beta"
archivesBaseName += "-$versionName"
applicationId "eu.siacs.conversations"
resValue "string", "applicationId", applicationId
@@ -691,6 +691,7 @@ public class XmppConnectionService extends Service {
}
case TorServiceUtils.ACTION_STATUS:
final String status = intent.getStringExtra(TorServiceUtils.EXTRA_STATUS);
+ //TODO port and host are in 'extras' - but this may not be a reliable source?
if ("ON".equals(status)) {
handleOrbotStartedEvent();
return START_STICKY;