do not allow null Uri at attachments

This commit is contained in:
tibbi 2020-04-12 19:59:57 +02:00
parent cc6dcafa88
commit 81b12dea70
1 changed files with 1 additions and 1 deletions

View File

@ -2,4 +2,4 @@ package com.simplemobiletools.smsmessenger.models
import android.net.Uri
data class Attachment(var uri: Uri?, var type: String)
data class Attachment(var uri: Uri, var type: String)