mirror of
https://github.com/oxen-io/session-android.git
synced 2025-08-12 06:07:53 +00:00
Fix crash
This commit is contained in:
@@ -97,8 +97,8 @@ object SessionMetaProtocol {
|
||||
* Should be invoked for the recipient's master device.
|
||||
*/
|
||||
@JvmStatic
|
||||
fun shouldSendTypingIndicator(recipient: Recipient, context: Context): Boolean {
|
||||
if (recipient.isGroupRecipient) { return false }
|
||||
fun shouldSendTypingIndicator(recipient: Recipient?, context: Context): Boolean {
|
||||
if (recipient == null || recipient.isGroupRecipient) { return false }
|
||||
val threadID = DatabaseFactory.getThreadDatabase(context).getThreadIdFor(recipient)
|
||||
return DatabaseFactory.getLokiThreadDatabase(context).getFriendRequestStatus(threadID) == LokiThreadFriendRequestStatus.FRIENDS
|
||||
}
|
||||
|
Reference in New Issue
Block a user