mirror of
https://github.com/nextcloud/talk-android
synced 2025-06-19 03:29:28 +01:00
Fix notifications crash
Signed-off-by: Mario Danic <mario@lovelyhq.com>
This commit is contained in:
parent
5334a0fd15
commit
b95bb003df
@ -38,8 +38,8 @@ android {
|
|||||||
targetSdkVersion 28
|
targetSdkVersion 28
|
||||||
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
||||||
|
|
||||||
versionCode 115
|
versionCode 116
|
||||||
versionName "7.0.1"
|
versionName "7.0.2"
|
||||||
|
|
||||||
flavorDimensions "default"
|
flavorDimensions "default"
|
||||||
renderscriptTargetApi 19
|
renderscriptTargetApi 19
|
||||||
|
@ -616,7 +616,11 @@ class ChatController(args: Bundle) : BaseController(args), MessagesListAdapter
|
|||||||
}
|
}
|
||||||
|
|
||||||
override fun getTitle(): String? {
|
override fun getTitle(): String? {
|
||||||
return EmojiCompat.get().process(currentConversation!!.displayName).toString()
|
if (currentConversation != null) {
|
||||||
|
return EmojiCompat.get().process(currentConversation!!.displayName).toString()
|
||||||
|
} else {
|
||||||
|
return ""
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public override fun onDestroy() {
|
public override fun onDestroy() {
|
||||||
|
Loading…
Reference in New Issue
Block a user