From 7d4b17759a055f51bded9aa065e68f7f5d02f666 Mon Sep 17 00:00:00 2001 From: Mario Danic Date: Wed, 18 Dec 2019 04:26:27 +0100 Subject: [PATCH] Fix for conversation info --- .../preferences/preferencestorage/DatabaseStorageModule.kt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/src/main/java/com/nextcloud/talk/utils/preferences/preferencestorage/DatabaseStorageModule.kt b/app/src/main/java/com/nextcloud/talk/utils/preferences/preferencestorage/DatabaseStorageModule.kt index 25260e3f4..dabee13d3 100644 --- a/app/src/main/java/com/nextcloud/talk/utils/preferences/preferencestorage/DatabaseStorageModule.kt +++ b/app/src/main/java/com/nextcloud/talk/utils/preferences/preferencestorage/DatabaseStorageModule.kt @@ -230,9 +230,9 @@ class DatabaseStorageModule( valueFromDb.value } } else if (key == "message_notification_level") { - return messageNotificationLevel!! + return messageNotificationLevel } else if (key == "conversation_name") { - return conversationNameValue!! + return conversationNameValue } else if (key == "conversation_password") { return "" }